Shows or hides the selected cell's combo box dropdown.
Usage
Set_Property(OLECtrlEntID, "OLE.ComboDropDown", Boolean)
Values
[True | False]
Default: False
Remarks
The ComboDropDown property allows programmatic control over the visibility of the select cell's combo box dropdown. Since only the selected cell can show a dropdown, there is no need to provide an index to an arbitrary cell. Simply pass 1 to this property to show the dropdown or 0 to hide it.
Nothing happens if no cell is selected or if the selected cell is not a Combo Box type cell.
Example
// Show the combo box drop down Set_Property(@Window:".OLE_EDITTABLE", "OLE.ComboDropDown", 1) // Determine if the combo box is visible or not IsComboVisible = Get_Property(@Window:".OLE_EDITTABLE", "OLE.ComboDropDown")