LOTUSSCRIPT/COM/OLE CLASSES
Dim session As New NotesSession Dim db As NotesDatabase Set db = session.CurrentDatabase Dim doc As New NotesDocument(db) Call doc.AppendItemValue("From", session.UserName) Call doc.AppendItemValue("Subject", _ "Meeting time changed") Dim rtpStyle As NotesRichTextParagraphStyle Dim pos As Long Dim interval As Long Set rtpStyle = session.CreateRichTextParagraphStyle pos = RULER_ONE_INCH Call rtpStyle.SetTab(pos, TAB_DECIMAL) Dim richText As New NotesRichTextItem(doc, "Body") Call richText.AppendParagraphStyle(rtpStyle) Call richText.AddTab(1) Call richText.AppendText("The meeting is at 2:00 not 3:00") Call doc.Save(True, False)
See Also