TcxInplaceEditAutoHeight Enum
Enumerates automatic height adjustment modes for multiline in-place editors.
Declaration
TcxInplaceEditAutoHeight = (
eahNone,
eahEditor,
eahRow
);
Members
Name | Description | Example |
---|---|---|
eahNone
|
An active in-place editor is displayed as a scrollable single-line text field. |
|
eahEditor
|
An active in-place editor’s height automatically adjusts to fit the content. The edited row’s height changes to fit the new value once a user confirms the changes made in the editor. |
|
eahRow
|
The row’s height automatically adjusts to fit content in an active in-place cell editor. This option is in effect only if automatic cell height adjustment is enabled. |
Remarks
Note
Automatic height adjustment modes (eahEditor and eahRow) have no effect on the following in-place editor types:
- Drop-down editors
- Non-text editors
- Editors with embedded buttons
- Input mask text editors
- Multiline editors with visible scrollbars
The following properties reference the TcxInplaceEditAutoHeight type:
- A VCL Grid Table View‘s OptionsBehavior.EditAutoHeight property
- A Tree List control’s OptionsBehavior.EditAutoHeight property
See Also