ShowDropDown

[method icon] ShowDropDown()

Forces the display of the DBEdit dropdown

Applies to: KCMLEdit


[method icon] ShowDropDown()

Forces the display of the DBEdit dropdown

Applies to: Grid

Introduced in KCML version 5.02


>

ShowDropDown

Used to force the display of the drop down portion of a KCML Edit control. For example:

 .EditControl1.ShowDropDown()

Grid

Used to force the display of the drop down portion of a KCML Edit control within a Grid cell. This method may onyl be used when an edit is already instantiated on a grid (e.g. using MoveCursor() for an auto-edit cell or EditCell()) and will apply to the current edit cell. For example:

REM this is an auto-edit grid.
REM Move the cursor to start the edit, then immediately
REM bring up the drop down list.
.gridcontrol1.MoveCursor(2,1)
.gridControl1.ShowDropDown()

See also

Grid methods, properties and events. KCMLEdit methods, properties and events.