IUIX_Combo::List Property
From PDF XChange PDF SDK
List property gets list object that contains all combo box items. See IUIX_List interface for details of its available functionality.
Syntax
HRESULT get_List([out, retval] IUIX_Obj** ppList);
Remarks
Note, that get_List(..) returns object of IUIX_Obj interface (not IUIX_List inteface). Use _QueryImpl(..) to query implementation of IUIX_List from IUIX_Obj.
CComPtr<IUIX_Obj> pObj; ... CComPtr<IUIX_List> pLst; _QueryImpl(pObj, pLst);
See Also
See also IUIX_Combo, IUIX_List.