CComboBox::GetDroppedState

BOOL GetDroppedState( ) const;

Return Value

Nonzero if the list box is visible; otherwise 0.

Remarks

Call the GetDroppedState member function to determine whether the list box of a drop-down combo box is visible (dropped down).

Example

// The pointer to my combo box.
extern CComboBox* pmyComboBox;

// Show the dropdown list box if it is not already dropped.
if (!pmyComboBox->GetDroppedState())
   pmyComboBox->ShowDropDown(TRUE);

CComboBox OverviewClass MembersHierarchy Chart

See Also   CB_SHOWDROPDOWN, CB_GETDROPPEDSTATE