Description
Gets the size of the indentation, left margin, or right margin of the paragraph containing the insertion point in a RichTextEdit control.
Applies to
RichTextEdit controls
Syntax
rtecontrol.GetParagraphSetting ( whichsetting )
Argument |
Description |
---|---|
rtecontrol |
The name of the control for which you want paragraph information. |
whichsetting |
A value of the ParagraphSetting enumerated datatype specifying the setting for which you want the value. Values are:
|
Return value
Long.
Returns the size of the specified setting in thousandths of an inch. GetParagraphSetting returns -1 if an error occurs. If which setting is null, it returns null.
Examples
This example gets the indentation setting for the current paragraph:
long ll_indent ll_indent = rte_1.GetParagraphSetting(Indent!))
See also