LOTUSSCRIPT/COM/OLE CLASSES


Examples: TitleStyle property
This agent displays the font size of the title of each section in a rich text item.

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 rtstyle As NotesRichTextStyle
 Do
   Set rts = rtnav.GetElement
   Messagebox "Font size is " & _
   rts.TitleStyle.FontSize,, rts.Title
 Loop While rtnav.FindNextElement
End Sub

See Also