.

HCLSoftware Business Partner
Domino Consulting Services
CRUCIAL Notes Tools
+1 212-599-2048

Domino Consulting Services
CRUCIAL Notes Tools
Domino administration
Notes development

Facebook Twitter YouTube
Chat now       
.
ProductsDownloadsNewsAbout usContact


Need a Domino Consultant? Call NotesMail +1 212-599-2048 - HCLSoftware Business Partner

LOTUSSCRIPT/COM/OLE CLASSES


Examples: AppendParagraphStyle method
This example appends a paragraph style to a new rich text item.

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.InterLineSpacing = SPACING_DOUBLE
Call richText.AppendParagraphStyle(rtpStyle)
Call richText.AppendText("Where are we now?")
Call richText.AppendText(" and where do we go from here.")
Messagebox rtpStyle.InterLineSpacing
Call doc.Save(True, False)

See Also