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*  pSrcData,
+
<pre class="brush:cpp;gutter:false">HRESULT OnEditPresetItem([in]      ICabNode*  srcData,
                         [in]      BSTR      sID,
+
                         [in]      BSTR      ID,
                         [in, out]  BSTR*      sName,
+
                         [in, out]  BSTR*      Name,
                         [in, out]  BSTR*      sDesc);</pre>
+
                         [in, out]  BSTR*      Desc);</pre>
  
 
== Parameters ==
 
== Parameters ==
;pSrcData
+
;srcData
 
:[in]  Pointer to [[PXV:ICabNode|ICabNode]].
 
:[in]  Pointer to [[PXV:ICabNode|ICabNode]].
;sID
+
;ID
 
:[in]  Value of BSTR.
 
:[in]  Value of BSTR.
;sName
+
;Name
 
:[in, out]  Pointer to BSTR.
 
:[in, out]  Pointer to BSTR.
;sDesc
+
;Desc
 
:[in, out]  Pointer to BSTR.
 
:[in, out]  Pointer to BSTR.
  

Revision as of 07:42, 12 June 2015


The method of interface of PDF-XChange Editor SDK.

Syntax

HRESULT OnEditPresetItem([in]       ICabNode*  srcData,
                         [in]       BSTR       ID,
                         [in, out]  BSTR*      Name,
                         [in, out]  BSTR*      Desc);

Parameters

srcData
[in] Pointer to ICabNode.
ID
[in] Value of BSTR.
Name
[in, out] Pointer to BSTR.
Desc
[in, out] Pointer to BSTR.

Return Value

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

See Also

IPXV_PresetsIoCallbacks