Currently, the supported editors are:
Name | Value | Description | |||
exItemDisableEdit | 0 | No editor is assigned to the current item. | |||
exItemEditText | 1 | A text-box editor is assigned to the current item. The exItemEditText can be combined with the exItemEditReadOnly or exItemEditSpin flags. | |||
exItemEditMask | 2 | A masked text-box editor is assigned to the current item. The EditMask property specifies the mask of the edit field. The EditValue property specifies the value of the edit field, without the masking characters. The EditOption(exEditMaskFloat) specifies whether the edit field mask a floating/decimal/integer point number. The exItemEditMask can be combined with the exItemEditReadOnly or exItemEditSpin flags. | |||
exItemEditSlider | 3 |
A slider editor is assigned to the current item. The
exItemEditSlider can be combined with the
exItemEditReadOnly,
exItemEditVertical or
exItemEditSpin flags. The EditValue property
indicates the current slider position/value.
If exItemEditSlider flag is combined with the exItemEditVertical you can get: | |||
exItemEditProgress | 4 |
A progress editor is assigned to the current item. The
exItemEditProgress can be combined with the
exItemEditReadOnly,
exItemEditVertical or
exItemEditSpin flags. The EditValue property
indicates the current progress position/value.
If exItemEditProgress flag is combined with the exItemEditVertical you can get: | |||
exItemEditScrollBar | 5 |
A scrollbar editor is assigned to the current item. The
exItemEditScrollBar can be combined with the
exItemEditReadOnly,
exItemEditVertical or
exItemEditSpin flags. The EditValue property
indicates the current scroll position/value.
If exItemEditScrollBar flag is combined with the exItemEditVertical you can get:
| |||
exItemEditColor | 6 | A color editor is assigned to the current item. The exItemEditColor can be combined with the exItemEditReadOnly or exItemEditSpin flags. The EditValue property indicates the current color value. | |||
exItemEditFont | 7 | A font editor is assigned to the current item. The exItemEditFont can be combined with the exItemEditReadOnly or exItemEditSpin flags. The EditCaption property indicates the current font name. | |||
exItemEditReadOnly | 256 | Disables the current's item editor. This flag can be combined with any other option. | |||
exItemEditSpin | 512 |
A spin editor is assigned to the current item. This flag can be combined with
any other option. The following picture combines a
exItemEditSlider with the
exItemEditSpin
| |||
exItemEditVertical | 1024 | The editor is vertically oriented. You can combine this flag with exItemEditSlider, exItemEditProgress and exItemEditScrollBar |