IPXV_Inst::CreateStdPresetsCallbacks Method

From PDF XChange PDF SDK
Jump to: navigation, search
m (Automatic page editing by robot)
 
(3 intermediate revisions by 2 users not shown)
Line 5: Line 5:
 
{{ToReview}}
 
{{ToReview}}
  
Creates new object that implements [[PXV:IPXV_PresetsListCallbacks|IPXV_PresetsListCallbacks]] interface in standard way and provides access to settings presets database.
+
Creates new object that implements [[PXV:IPXV_PresetsListCallbacks|IPXV_PresetsListCallbacks]] interface in standard way and provides access to the settings presets database.
  
 
== Syntax ==
 
== Syntax ==
<pre class="brush:cpp;gutter:false">HRESULT CreateStdPresetsCallbacks([in]                      BSTR                        pPathToPresetsArr,
+
<pre class="brush:cpp;gutter:false">HRESULT CreateStdPresetsCallbacks([in]                      BSTR                        sPathToPresetsArr,
 
                                   [in]                      IPXV_PresetsIoCallbacks*    pCustomIoCallbacks,
 
                                   [in]                      IPXV_PresetsIoCallbacks*    pCustomIoCallbacks,
 
                                   [in, defaultvalue(NULL)]  ICab*                        pCustomStorage,
 
                                   [in, defaultvalue(NULL)]  ICab*                        pCustomStorage,
 
                                   [in, defaultvalue(0)]    LONG                        nListStyle,
 
                                   [in, defaultvalue(0)]    LONG                        nListStyle,
                                   [out, retval]            IPXV_PresetsListCallbacks**  ppRes);</pre>
+
                                   [out, retval]            IPXV_PresetsListCallbacks**  pRes);</pre>
  
 
== Parameters ==
 
== Parameters ==
;pPathToPresetsArr
+
;sPathToPresetsArr
 
:[in]  Specifies path to presets node in global or custom storage of parameters.
 
:[in]  Specifies path to presets node in global or custom storage of parameters.
 
;pCustomIoCallbacks
 
;pCustomIoCallbacks
Line 23: Line 23:
 
;nListStyle
 
;nListStyle
 
:[in, defaultvalue(0)]  The set of [[PXV:PXV_PresetsListStyleFlags|PXV_PresetsListStyleFlags]] to customize displaying in UI the preset-items and to setup special edit-restrictions for end-user.
 
:[in, defaultvalue(0)]  The set of [[PXV:PXV_PresetsListStyleFlags|PXV_PresetsListStyleFlags]] to customize displaying in UI the preset-items and to setup special edit-restrictions for end-user.
;ppRes
+
;pRes
 
:[out, retval]  Returns pointer to a new [[PXV:IPXV_PresetsListCallbacks|IPXV_PresetsListCallbacks]] object.
 
:[out, retval]  Returns pointer to a new [[PXV:IPXV_PresetsListCallbacks|IPXV_PresetsListCallbacks]] object.
  

Latest revision as of 03:55, 15 June 2015


Creates new object that implements IPXV_PresetsListCallbacks interface in standard way and provides access to the settings presets database.

Syntax

HRESULT CreateStdPresetsCallbacks([in]                      BSTR                         sPathToPresetsArr,
                                  [in]                      IPXV_PresetsIoCallbacks*     pCustomIoCallbacks,
                                  [in, defaultvalue(NULL)]  ICab*                        pCustomStorage,
                                  [in, defaultvalue(0)]     LONG                         nListStyle,
                                  [out, retval]             IPXV_PresetsListCallbacks**  pRes);

Parameters

sPathToPresetsArr
[in] Specifies path to presets node in global or custom storage of parameters.
pCustomIoCallbacks
[in] The optional pointer to IPXV_PresetsIoCallbacks. You may implement this callback and pass here to have a possibility to intercept some notifications about changing of presets database.
pCustomStorage
[in, defaultvalue(NULL)] Pointer to ICab object that must be a database of settings presets with special predefined structure.
nListStyle
[in, defaultvalue(0)] The set of PXV_PresetsListStyleFlags to customize displaying in UI the preset-items and to setup special edit-restrictions for end-user.
pRes
[out, retval] Returns pointer to a new IPXV_PresetsListCallbacks object.

Return Value

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

See Also

IPXV_Inst