ICabNode::Item Property

From PDF XChange PDF SDK
Jump to: navigation, search
(Parent page removed)
m (Automatic page editing by robot)
 
(13 intermediate revisions by 3 users not shown)
Line 2: Line 2:
 
[[Category:Editor]]
 
[[Category:Editor]]
 
{{#customTitle:ICabNode::Item Property}}
 
{{#customTitle:ICabNode::Item Property}}
{{ToWrite}}
+
{{#parentPage:PXV:ICabNode#Properties|Item|property}}
{{ToReview}}
+
  
Property '''Item''' of interface [[PXV:ICabNode|ICabNode]] returns  Pointer to [[PXV:ICabNode|ICabNode]] ...
+
Returns a container subnode.
  
 
== Syntax ==
 
== Syntax ==
<pre class="brush:cpp;gutter:false">HRESULT get_Item([in]          VARIANT*    itemIdentity,
+
<pre class="brush:cpp;gutter:false">HRESULT get_Item([in]          VARIANT     itemIdentity,
                 [out, retval]  ICabNode**  ppItem);
+
                 [out, retval]  ICabNode**  pItem);
 
</pre>
 
</pre>
  
 
== Parameters ==
 
== Parameters ==
 
;itemIdentity
 
;itemIdentity
:[in]  Pointer to VARIANT*.
+
:[in]  VARIANT.
 +
Identifies a subItem. See [[PXV:CAB:SubnodeIdentification|CAB subnode identification syntax]].
 +
If the referenced subItem does not exist, a proxy node of <code>dt_Undefined</code> type is returned. Proxy node can be further resolved to a real node when assigned a value (in this case the type of the new node is deduced from the type of the assigned value) or when its type is set explicitly through its <code>Type</code> property.
 +
 
 +
; pItem
 +
:[out, retval]  ICabNode**.
 +
The address of a pointer variable that receives a pointer to the referenced subnode.
  
 
== See Also ==
 
== See Also ==
[[PXV:ICabNode|ICabNode]].
+
[[PXV:ICabNode|ICabNode]]

Latest revision as of 23:52, 30 November 2017

Returns a container subnode.

Syntax

HRESULT get_Item([in]           VARIANT     itemIdentity,
                 [out, retval]  ICabNode**  pItem);

Parameters

itemIdentity
[in] VARIANT.

Identifies a subItem. See CAB subnode identification syntax. If the referenced subItem does not exist, a proxy node of dt_Undefined type is returned. Proxy node can be further resolved to a real node when assigned a value (in this case the type of the new node is deduced from the type of the assigned value) or when its type is set explicitly through its Type property.

pItem
[out, retval] ICabNode**.

The address of a pointer variable that receives a pointer to the referenced subnode.

See Also

ICabNode