Shows or hides control's combo box drop down.
Usage
Set_Property(OLECtrlEntID, "OLE.ComboDropDown[CtrlId]", Boolean)
Values
[True | False]
Default: False
Indices
Index | Description |
---|---|
CtrlId | Identifies a subclassed control |
Remarks
Applies To: EDITLINE, EDITBOX
The ComboDropDown property allows programmatic control over the visibility of a control's combo box drop down. Simply pass 1 to this property to show the dropdown or 0 to hide it.
Example
// NOTE: using ; and not . CtrlId = @Window:";EDITLINE" // Show the combo box drop down Set_Property(@Window:".OLE_SUBCLASS", "OLE.ComboDropDown[":CtrlId:"]", 1) // Determine if the combo box is visible or not IsComboVisible = Get_Property(@Window:".OLE_SUBCLASS", "OLE.ComboDropDown[":CtrlId:"]")