IBitSet::Item Property

From PDF XChange PDF SDK
Jump to: navigation, search
m (Automatic page editing by robot)
m (Automatic page editing by robot)
 
Line 7: Line 7:
  
 
== 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]  VARIANT_BOOL*  Val);
+
                 [out, retval]  VARIANT_BOOL*  bVal);
HRESULT put_Item([in]  ULONG        Index,
+
HRESULT put_Item([in]  ULONG        nIndex,
                 [in]  VARIANT_BOOL  Val);
+
                 [in]  VARIANT_BOOL  bVal);
 
</pre>
 
</pre>
  
 
== Parameters ==
 
== Parameters ==
;Index
+
;nIndex
 
:[in]  Index of the item in the bit-set, who's value will be set.
 
:[in]  Index of the item in the bit-set, who's value will be set.
  
 
== See Also ==
 
== See Also ==
 
[[PXV:IBitSet|IBitSet]]
 
[[PXV:IBitSet|IBitSet]]

Latest revision as of 03:12, 15 June 2015

Gets/sets the value of the item in the bit-set.

Syntax

HRESULT get_Item([in]           ULONG          nIndex,
                 [out, retval]  VARIANT_BOOL*  bVal);
HRESULT put_Item([in]  ULONG         nIndex,
                 [in]  VARIANT_BOOL  bVal);

Parameters

nIndex
[in] Index of the item in the bit-set, who's value will be set.

See Also

IBitSet