IPXV_Inst::GetDocSelectionHandler Method

From PDF XChange PDF SDK
Jump to: navigation, search
m (Automatic page editing by robot)
m (Automatic page editing by robot)
Line 8: Line 8:
  
 
== Syntax ==
 
== Syntax ==
<pre class="brush:cpp;gutter:false">HRESULT GetDocSelectionHandler([in]          IPXV_Document*              pDoc,
+
<pre class="brush:cpp;gutter:false">HRESULT GetDocSelectionHandler([in]          IPXV_Document*              Doc,
                               [in]          IPXV_DocSelection*          pDocSel,
+
                               [in]          IPXV_DocSelection*          DocSel,
                               [out, retval]  IPXV_DocSelectionHandler**  pDocSelHandler);</pre>
+
                               [out, retval]  IPXV_DocSelectionHandler**  DocSelHandler);</pre>
  
 
== Parameters ==
 
== Parameters ==
;pDoc
+
;Doc
 
:[in]  Pointer to [[PXV:IPXV_Document|IPXV_Document]].
 
:[in]  Pointer to [[PXV:IPXV_Document|IPXV_Document]].
;pDocSel
+
;DocSel
 
:[in]  Pointer to [[PXV:IPXV_DocSelection|IPXV_DocSelection]].
 
:[in]  Pointer to [[PXV:IPXV_DocSelection|IPXV_DocSelection]].
;pDocSelHandler
+
;DocSelHandler
 
:[out, retval]  Returns pointer to corresponding [[PXV:IPXV_DocSelectionHandler|IPXV_DocSelectionHandler]] object.
 
:[out, retval]  Returns pointer to corresponding [[PXV:IPXV_DocSelectionHandler|IPXV_DocSelectionHandler]] object.
  

Revision as of 07:32, 12 June 2015


Returns corresponding selection-handler for the specified document-selection object.

Syntax

HRESULT GetDocSelectionHandler([in]           IPXV_Document*              Doc,
                               [in]           IPXV_DocSelection*          DocSel,
                               [out, retval]  IPXV_DocSelectionHandler**  DocSelHandler);

Parameters

Doc
[in] Pointer to IPXV_Document.
DocSel
[in] Pointer to IPXV_DocSelection.
DocSelHandler
[out, retval] Returns pointer to corresponding IPXV_DocSelectionHandler object.

Return Value

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

See Also

IPXV_Inst