COleConvertDialog::GetSelectionType
UINTGetSelectionType()const;
Return Value
Type of selection made.
Remarks
Call this function to determine the type of conversion selected in the Convert dialog box.
The return type values are specified by the Selection enumeration type declared in the COleConvertDialog class.
enum Selection
{
noConversion,
convertItem,
activateAs
};
Brief descriptions of these values follow:
COleConvertDialog::noConversion Returned if either the dialog box was canceled or the user selected no conversion. If COleConvertDialog::DoModal returned IDOK, it is possible that the user selected a different icon than the one previously selected.
COleConvertDialog::convertItem Returned if the Convert To radio button was checked, the user selected a different item to convert to, and DoModal returned IDOK.
COleConvertDialog::activateAs Returned if the Activate As radio button was checked, the user selected a different item to activate, and DoModal returned IDOK.
COleConvertDialog Overview | Class Members | Hierarchy Chart
See Also COleConvertDialog::DoModal, COleConvertDialog::COleConvertDialog