BOOL GetExtendedUI( ) const;
Return Value
Nonzero if the combo box has the extended user interface; otherwise 0.
Remarks
Call the GetExtendedUI member function to determine whether a combo box has the default user interface or the extended user interface. The extended user interface can be identified in the following ways:
Scrolling in the static control is disabled when the item list is not visible (arrow keys are disabled).
Example
// The pointer to my combo box.
extern CComboBox* pmyComboBox;
// Use the extended UI if it is not already set.
if (!pmyComboBox->GetExtendedUI())
pmyComboBox->SetExtendedUI(TRUE);
CComboBox Overview | Class Members | Hierarchy Chart
See Also CComboBox::SetExtendedUI, CB_GETEXTENDEDUI