IUIX_Combo::List Property

From PDF XChange PDF SDK
Jump to: navigation, search
m (Automatic page editing by robot)
 
(8 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 +
__NOTOC__
 
[[Category:Editor]]
 
[[Category:Editor]]
 
{{#customTitle:IUIX_Combo::List Property}}
 
{{#customTitle:IUIX_Combo::List Property}}
{{#parentPage:PXV:IUIX_Combo|property}}
+
{{#parentPage:PXV:IUIX_Combo#Properties|List|property}}
{{ToWrite}}
+
{{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** pList);
 
</pre>
 
</pre>
 +
 +
== Remarks ==
 +
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>.
  
 
== See Also ==
 
== See Also ==
See also [[PXV:IUIX_Combo|IUIX_Combo]].
+
[[PXV:IUIX_Combo|IUIX_Combo]]

Latest revision as of 14:36, 15 June 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**  pList);

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

IUIX_Combo