INumArray::Item Property

From PDF XChange PDF SDK
Jump to: navigation, search
m (Automatic page editing by robot)
m (Automatic page editing by robot)
 
Line 6: Line 6:
 
{{ToReview}}
 
{{ToReview}}
  
Property '''Item''' of interface [[PXV:INumArray|INumArray]] returns/sets  Value of LONG ...
+
Property '''nItem''' of interface [[PXV:INumArray|INumArray]] returns/sets  Value of LONG ...
  
 
== Syntax ==
 
== Syntax ==
<pre class="brush:cpp;gutter:false">HRESULT get_Item([in]          ULONG  Index,
+
<pre class="brush:cpp;gutter:false">HRESULT get_Item([in]          ULONG  nIndex,
                 [out, retval]  LONG*  Item);
+
                 [out, retval]  LONG*  nItem);
HRESULT put_Item([in]  ULONG  Index,
+
HRESULT put_Item([in]  ULONG  nIndex,
                 [in]  LONG  Item);
+
                 [in]  LONG  nItem);
 
</pre>
 
</pre>
  
 
== Parameters ==
 
== Parameters ==
;Index
+
;nIndex
 
:[in]  Value of ULONG.
 
:[in]  Value of ULONG.
  
 
== See Also ==
 
== See Also ==
 
[[PXV:INumArray|INumArray]]
 
[[PXV:INumArray|INumArray]]

Latest revision as of 03:18, 15 June 2015


Property nItem of interface INumArray returns/sets Value of LONG ...

Syntax

HRESULT get_Item([in]           ULONG  nIndex,
                 [out, retval]  LONG*  nItem);
HRESULT put_Item([in]  ULONG  nIndex,
                 [in]  LONG   nItem);

Parameters

nIndex
[in] Value of ULONG.

See Also

INumArray