LOTUSSCRIPT/COM/OLE CLASSES
Sub Initialize Dim session As New NotesSession Dim db As NotesDatabase Set db = session.CurrentDatabase Dim dc As NotesDocumentCollection Set dc = db.UnprocessedDocuments Dim doc As NotesDocument Set doc = dc.GetFirstDocument Dim rti As NotesRichTextItem Set rti = doc.GetFirstItem("Body") Dim rtnav As NotesRichTextNavigator Set rtnav = rti.CreateNavigator If Not rtnav.FindFirstElement(RTELEM_TYPE_SECTION) Then Messagebox "Body item does not contain a section,",, _ "Error" Exit Sub End If Dim rts As NotesRichTextSection Dim colorObject As NotesColorObject Do Set rts = rtnav.GetElement Set colorObject = session.CreateColorObject colorObject.NotesColor = COLOR_BLUE Call rts.SetBarColor(colorObject) Call doc.Save(True, True) Loop While rtnav.FindNextElement End Sub
See Also