I have a LotusScript routine that reads some data and populates a “doc.Body” field in a Memo form.
After completion, this routine performs the “doc.Send” command and the message is sent. So far, so good…
But I was wondering if is there any way to, while populating this RichText field, according to some conditions, change the text attributes such as color, font, size…
The idea is to highlight some data in tis RT field.
Is that possible?
Something like this…
…
get data
if there´s no data then end this routine
analyze data
if data = YYY then
set font color to blue (but just for the next entry)
else
set font color to black (but just for the next entry)