ICabNode::Insert Method

From PDF XChange PDF SDK
Jump to: navigation, search
m
Line 6: Line 6:
 
{{ToReview}}
 
{{ToReview}}
  
Inserts new subnode into the container node.
+
Inserts a new subnode into the container node.
  
  
Line 27: Line 27:
 
When <code>itemIdentity</code> identifies an existing dictionary node, the type is checked against the existing node type.
 
When <code>itemIdentity</code> identifies an existing dictionary node, the type is checked against the existing node type.
  
If the type value is ,code>dt_Undefined</code>, the type check semantics is actually a type resolution - the resulting node type is the type the checking is made against.
+
If the type value is <code>dt_Undefined</code>, the type check semantics is actually a type resolution - the resulting node type is the type the checking is made against.
  
  

Revision as of 07:59, 21 May 2015


Inserts a new subnode into the container node.


Syntax

HRESULT Insert([in]                  VARIANT       itemIdentity,
               [in, defaultvalue(dt_Invalid)]  CabDataTypeID  Type,
               [out, retval]                   ICabNode**     ppNode);

Parameters

itemIdentity
[in, optional] VARIANT.

Specifies the new node position. For array containers it is interpreted as an integer index the new node has to be inserted before. For dictionary containers it specifies a string key to associate with the new node. If the dictionary already has a node with this key, the existing node will be returned.

Type
[in, defaultvalue(dt_Invalid)] Value of CabDataTypeID.

Specifies the node type.

For templatized containers the type is checked against the container template. When itemIdentity identifies an existing dictionary node, the type is checked against the existing node type.

If the type value is dt_Undefined, the type check semantics is actually a type resolution - the resulting node type is the type the checking is made against.


ppNode
[out, retval] Pointer to ICabNode.

The address of a pointer variable that receives the pointer to the resulting cab node.

Return Value

Returns S_OK if operation was successful or error code in other cases.

See Also

ICabNode.