DropDownFilled
DropDownFilled
Determines whether the drop down portion of the control has been filled
Boolean property
Applies to: ComboBox , Grid , GridCell , KCMLEdit
This property is used to determine whether the drop down portion of a Edit control or Grid cell has been filled. This property should be set to TRUE after the drop down portion of the control has been filled, i.e. in the DropDown() event handler. If this property is set to TRUE then the DropDown() event handler will not be called again unless this property is set back to FALSE before the event occurs again. For example:
-DEFEVENT Form1.EditControl1.DropDown() 'FillEditControl() .EditControl1.DropDownFilled = TRUE END EVENT