Vcl.Grids.TEditStyle
Delphi
TEditStyle = (esSimple, esEllipsis, esPickList);
C++
enum DECLSPEC_DENUM TEditStyle : unsigned char { esSimple, esEllipsis, esPickList };
Properties
| Type | Visibility | Source | Unit | Parent |
|---|---|---|---|---|
| enum | public | Vcl.Grids.pas Vcl.Grids.hpp |
Vcl.Grids | Vcl.Grids |
Description
TEditStyle indicates whether a cell in a grid contains a drop-down arrow or ellipsis button.
TEditStyle describes the buttons, if any, that can appear in the cell of a grid. It can be any of the following values:
| Value | Meaning |
|---|---|
|
esSimple |
The cell acts as a simple edit control where users can type a new value. |
|
esEllipsis |
The cell contains an ellipsis button that users can click to launch a dialog. |
|
esPickList |
The cell contains a drop-down arrow button that users can click to display a pick list of possible values. |