Does anyone know if you can do inline formatting characters on fields.
The scenario I have is that I am creating a document, I need some of the text to be bold and the rest to be normal.
In htm I would do something like <B>Bold Text Here</B> Normal text here...
Can something similar like this be done to a field text string?
Okay.. after some reading I found that you can enable RTF per field which would solve this issue, however when I set the RTF field to true and copy the sample code from the help it does not render as RTF, but as text???
Does anyone have a working sample of RTF rendering per field so I can get this to work? Thanks.
Okay.. after some reading I found that you can enable RTF per field which would solve this issue, however when I set the RTF field to true and copy the sample code from the help it does not render as RTF, but as text??? Does anyone have a working sample of RTF rendering per field so I can get this to work? Thanks. http://helpcentral.componentone.com/cs/forums/p/79622/219238.aspx#219238
Thanks Patrick... it works great!
What if I want a rtf field to do say the following:
Contract # 122001
but the number will not be hard coded in but rather the text from another form field?
You would need to create the RTF string dynamically.
Simplest way would be to first create the RTF text string statically, then look in the RTF string where the actual number 122001 is, remove that value from the string and place a variable of type string in its place by concatenating the original RTF string with your variable string.
That way the underline text would be dynamic but still have the "underline" formatting applied to it.