IPXV_PresetsIoCallbacks::OnEditPresetItem Method

From PDF XChange PDF SDK
Jump to: navigation, search
m (Automatic page editing by robot)
m (Automatic page editing by robot)
 
Line 9: Line 9:
  
 
== Syntax ==
 
== Syntax ==
<pre class="brush:cpp;gutter:false">HRESULT OnEditPresetItem([in]      ICabNode*  srcData,
+
<pre class="brush:cpp;gutter:false">HRESULT OnEditPresetItem([in]      ICabNode*  pSrcData,
                         [in]      BSTR      ID,
+
                         [in]      BSTR      sID,
                         [in, out]  BSTR*      Name,
+
                         [in, out]  BSTR*      sName,
                         [in, out]  BSTR*      Desc);</pre>
+
                         [in, out]  BSTR*      sDesc);</pre>
  
 
== Parameters ==
 
== Parameters ==
;srcData
+
;pSrcData
 
:[in]  Pointer to [[PXV:ICabNode|ICabNode]].
 
:[in]  Pointer to [[PXV:ICabNode|ICabNode]].
;ID
+
;sID
 
:[in]  Value of BSTR.
 
:[in]  Value of BSTR.
;Name
+
;sName
 
:[in, out]  Pointer to BSTR.
 
:[in, out]  Pointer to BSTR.
;Desc
+
;sDesc
 
:[in, out]  Pointer to BSTR.
 
:[in, out]  Pointer to BSTR.
  

Latest revision as of 04:06, 15 June 2015


The method of interface of PDF-XChange Editor SDK.

Syntax

HRESULT OnEditPresetItem([in]       ICabNode*  pSrcData,
                         [in]       BSTR       sID,
                         [in, out]  BSTR*      sName,
                         [in, out]  BSTR*      sDesc);

Parameters

pSrcData
[in] Pointer to ICabNode.
sID
[in] Value of BSTR.
sName
[in, out] Pointer to BSTR.
sDesc
[in, out] Pointer to BSTR.

Return Value

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

See Also

IPXV_PresetsIoCallbacks