TdxCustomOrgChart.EditMode Property
Specifies the control’s text-related settings.
Declaration
property EditMode: TdxOcEditMode read; write; default [emWrap];
Property Value
Type |
---|
TdxOcEditMode |
Remarks
Set one or more of the following flags to customize the control’s text-related functionality. Options include:
Value | Description |
---|---|
emLeft | Text is left-aligned in the node’s client area. The emLeft, emCenter, and emRight flags are mutually exclusive. |
emCenter | Text is centered within the node’s client area. |
emRight | Text is right-aligned in the node’s client area. |
emVCenter | Text is vertically centered within the node’s client area. If the text does not fit into the client area horizontally, only the first text line is visible. |
emWrap | Enables text wrapping. Set this flag to fit the text without expanding the client area horizontally. If you want to display large texts, use the emWrap and emGrow flags simultaneously. |
emUpper | Converts all lowercase characters to uppercase. The emUpper and emLower flags contradict with each other. |
emLower | Converts all uppercase characters to lowercase. |
emGrow | Set this flag to fit the text by expanding the client area vertically. This flag has an effect only for wrapped texts. |
The default value of the EditMode property is [emWrap].
See Also