IUIX_Combo::List Property

From PDF XChange PDF SDK
Jump to: navigation, search
Line 11: Line 11:
  
 
== Remarks ==
 
== Remarks ==
Note, that ''get_List(..)'' returns object of ''IUIX_Obj'' interface (not ''IUIX_List'' inteface). Use _QueryImpl(..) to query implementation of [[PXV:IUIX_List|IUIX_List]] from [[PXV:IUIX_Obj|IUIX_Obj]].
+
Note, that <code>get_List(..)</code> returns object of <code>IUIX_Obj</code> interface (not <code>IUIX_List</code> inteface). Use <code>[[PXV:IUIX_Obj_QueryImpl|QueryImpl]]</code> method to query implementation of <code>IUIX_List</code> from <code>IUIX_Obj</code>.
<pre class="brush:cpp;gutter:false">
+
CComPtr<IUIX_Obj> pObj;
+
...
+
CComPtr<IUIX_List> pLst;
+
_QueryImpl(pObj, pLst);
+
</pre>
+
  
 
== See Also ==
 
== See Also ==
 
See also [[PXV:IUIX_Combo|IUIX_Combo]], [[PXV:IUIX_List|IUIX_List]].
 
See also [[PXV:IUIX_Combo|IUIX_Combo]], [[PXV:IUIX_List|IUIX_List]].

Revision as of 06:52, 19 May 2015


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 method to query implementation of IUIX_List from IUIX_Obj.

See Also

See also IUIX_Combo, IUIX_List.