GetRichTextAlign
method (DataWindows)
Description
Gets the current alignment setting for editing columns with the
RichText edit style.
Applies to
DataWindow control
Syntax
|
1 |
Integer dwcontrol.GetRichTextAlign ( REF alignment align ) |
|
Argument |
Description |
|---|---|
|
dwcontrol |
A reference to the DataWindow control |
|
align |
Current alignment setting of the selected |
Return value
Returns an integer to indicate whether the column that you selected
has the RichText edit style and whether the content has one or more
alignment types applied.
0 — Success
-1 — No RichText column is being edited
-2 — The selected text is a mix of alignment types
Usage
You can call this method from a button in a custom toolbar that you
use to obtain current font settings for columns with the RichText edit
style.
Examples
This example obtains the current alignment setting to be used for
editing columns with the RichText edit style:
|
1 2 3 |
Integer li_integer Alignment l_align li_integer = dw_1.GetRichTextAlign(l_align) |
See also