Reputation: 63
How can I detect page breaks in an RTF field?
I need to do a process to replace page breaks with symbols.
Upvotes: 2
Views: 249
Reputation: 30970
You can't do it with LotusScript Domino classes.
You can find all page breaks with the help of DXL export though:
<pardef
's with newpage='true'
<item name='Body'>
<richtext>
<pardef id='1'/>
<par def='1'>a</par>
<par def='1'>b</par>
<pardef id='2' newpage='true'/>
<par def='2'>c</par>
<par def='1'>d</par>
</richtext>
</item>
The harder job will be to replace all occurrences:
Upvotes: 2