IUIX_Combo::List Property

From PDF XChange PDF SDK
Jump to: navigation, search
m (Automatic page editing by robot)
Line 2: Line 2:
 
{{#customTitle:IUIX_Combo::List Property}}
 
{{#customTitle:IUIX_Combo::List Property}}
 
{{#parentPage:PXV:IUIX_Combo|List Property|property}}
 
{{#parentPage:PXV:IUIX_Combo|List Property|property}}
{{ToWrite}}
 
 
{{ToReview}}
 
{{ToReview}}
  
Property '''List''' of interface [[PXV:IUIX_Combo|IUIX_Combo]] returns  Pointer to [[PXV:IUIX_Obj|IUIX_Obj]] ...
+
'''List''' property gets [[PXV:IUIX_List|list]] object that contains all combo box ''items''. See [[PXV:IUIX_List|IUIX_List]] interface for details of its available functionality.  
  
 
== Syntax ==
 
== Syntax ==
 
<pre class="brush:cpp;gutter:false">HRESULT get_List([out, retval]  IUIX_Obj**  ppList);
 
<pre class="brush:cpp;gutter:false">HRESULT get_List([out, retval]  IUIX_Obj**  ppList);
 +
</pre>
 +
 +
== 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]].
 +
<pre class="brush:cpp;gutter:false">
 +
CComPtr<IUIX_Obj> pObj;
 +
...
 +
CComPtr<IUIX_List> pLst;
 +
_QueryImpl(pObj, pLst);
 
</pre>
 
</pre>
  
 
== See Also ==
 
== See Also ==
See also [[PXV:IUIX_Combo|IUIX_Combo]].
+
See also [[PXV:IUIX_Combo|IUIX_Combo]], [[PXV:IUIX_List|IUIX_List]].

Revision as of 07:44, 8 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(..) 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.