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
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
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