RichText.SetParagraphFormat

RichText.SetParagraphFormat ( 

string ObjectName,

table  ParagraphFormat )

Example 1

-- Create the formatting table.
tbFormat = {};
tbFormat.Bulleted = true;

-- Set the formatting to bulleted.
RichText.SetParagraphFormat("RichText1", tbFormat);

Sets the current paragraph selection to bulleted in the richtext object named "RichText1."

See also:  Related Actions