Re: [iText-questions] RTF Anchor setReference problem

2006-10-05 Thread Mark Hall
On Monday 02 October 2006 13:58, Alin Popa wrote: > The result for the anchor will be: FOLDER_FILE (without STEP). > > What's the catch ? > What I'm doing wrong here ? > Why the word STEP is escaped ? This is due to the anchor content not being escaped correctly. I have committed a fix. The second

Re: [iText-questions] RTF Anchor setReference problem

2006-10-03 Thread Mark Hall
On Monday 02 October 2006 13:58, Alin Popa wrote: > Anchor anch = new Anchor( "Name",RtfFont ); > String string1="FOLDER"; > String string2="STEP_FILE"; > String strTemp=string1+"\\"+string2; > anch.setReference( fileTemp); > > The result for the anchor will be: FOLDER_FILE (without STEP). I will l

[iText-questions] RTF Anchor setReference problem

2006-10-02 Thread Alin Popa
Hi guys,I'm trying to do something like that:Anchor anch = new Anchor( "Name",RtfFont );String string1="FOLDER";String string2="STEP_FILE";String strTemp=string1+"\\"+string2;anch.setReference( fileTemp);The result for the anchor will be: FOLDER_FILE (without STEP).What's the catch ? What I'm doing