ICabNode::Equals Method

From PDF XChange PDF SDK
Jump to: navigation, search
(Automatic page editing by robot)
 
m (Automatic page editing by robot)
 
Line 9: Line 9:
  
 
== Syntax ==
 
== Syntax ==
<pre class="brush:cpp;gutter:false">HRESULT Equals(                      ICabNode*       pAnotherCabNode,
+
<pre class="brush:cpp;gutter:false">HRESULT Equals(                      ICabNode*     pAnotherCabNode,
               [in, defaultvalue(0)]  CabNodeCmpFlags  options,
+
               [in, defaultvalue(0)]  ULONG          nOptions,
               [out, retval]          VARIANT_BOOL*   bRes);</pre>
+
               [out, retval]          VARIANT_BOOL* bRes);</pre>
  
 
== Parameters ==
 
== Parameters ==
 
;pAnotherCabNode
 
;pAnotherCabNode
 
: Pointer to [[PXV:ICabNode|ICabNode]].
 
: Pointer to [[PXV:ICabNode|ICabNode]].
;options
+
;nOptions
:[in, defaultvalue(0)]  Value of [[PXV:CabNodeCmpFlags|CabNodeCmpFlags]].
+
:[in, defaultvalue(0)]  Value of ULONG.
 
;bRes
 
;bRes
 
:[out, retval]  Pointer to VARIANT_BOOL.
 
:[out, retval]  Pointer to VARIANT_BOOL.

Latest revision as of 05:57, 5 April 2017


The method of interface of PDF-XChange Editor SDK.

Syntax

HRESULT Equals(                       ICabNode*      pAnotherCabNode,
               [in, defaultvalue(0)]  ULONG          nOptions,
               [out, retval]          VARIANT_BOOL*  bRes);

Parameters

pAnotherCabNode
Pointer to ICabNode.
nOptions
[in, defaultvalue(0)] Value of ULONG.
bRes
[out, retval] Pointer to VARIANT_BOOL.

Return Value

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

See Also

ICabNode