Examples: LeftMargin property

This example sets the left margin property of a rich text paragraph style object.

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 agenda")
Dim rtpStyle As NotesrichTextParagraphStyle
Set rtpStyle = session.CreateRichTextParagraphStyle
Dim richText As New NotesRichTextItem(doc, "Body")
rtpStyle.LeftMargin = RULER_ONE_INCH
Call richText.AppendParagraphStyle(rtpStyle)
Call richText.AppendText("Where are we now?")
Call richText.AddNewLine(1)
Call richText.AppendText (" Where do we go from here?")
Call doc.Save(True, False)