ICabNode::ItemKey Property

From PDF XChange PDF SDK
Jump to: navigation, search
m (Automatic page editing by robot)
m (Automatic page editing by robot)
 
(3 intermediate revisions by 2 users not shown)
Line 6: Line 6:
 
{{ToReview}}
 
{{ToReview}}
  
Property '''ItemKey''' of interface [[PXV:ICabNode|ICabNode]] returns  Value of BSTR ...
+
Returns a CAB dictionary key at the specified position. It allows for enumeration of the CAB dictionary keys.
  
 
== Syntax ==
 
== Syntax ==
<pre class="brush:cpp;gutter:false">HRESULT get_ItemKey(              LONG  index,
+
<pre class="brush:cpp;gutter:false">HRESULT get_ItemKey(              LONG  nIndex,
                     [out, retval]  BSTR*  ppKey);
+
                     [out, retval]  BSTR*  sKey);
 
</pre>
 
</pre>
  
 
== Parameters ==
 
== Parameters ==
;index
+
;nIndex
 
: Value of LONG.
 
: Value of LONG.
 +
The index of the dictionary entry. Valid values are from 0 to the number of the elements in the dictionary.
 +
The order of the enumerated keys is undefined.
  
 
== See Also ==
 
== See Also ==
 
[[PXV:ICabNode|ICabNode]]
 
[[PXV:ICabNode|ICabNode]]

Latest revision as of 03:13, 15 June 2015


Returns a CAB dictionary key at the specified position. It allows for enumeration of the CAB dictionary keys.

Syntax

HRESULT get_ItemKey(               LONG   nIndex,
                    [out, retval]  BSTR*  sKey);

Parameters

nIndex
Value of LONG.

The index of the dictionary entry. Valid values are from 0 to the number of the elements in the dictionary. The order of the enumerated keys is undefined.

See Also

ICabNode