IPXV_Inst::GetDocFeaturePermission 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 GetDocFeaturePermission([in]          IPXV_Document*  pDoc,
+
<pre class="brush:cpp;gutter:false">HRESULT GetDocFeaturePermission([in]          BSTR  sDocPath,
                                 [in]          BSTR           sFeatureName,
+
                                 [in]          BSTR   sFeatureName,
                                 [out, retval]  LONG*           nPerm);</pre>
+
                                 [out, retval]  LONG* nPerm);</pre>
  
 
== Parameters ==
 
== Parameters ==
;pDoc
+
;sDocPath
:[in]  Pointer to [[PXV:IPXV_Document|IPXV_Document]].
+
:[in]  Value of BSTR.
 
;sFeatureName
 
;sFeatureName
 
:[in]  Value of BSTR.
 
:[in]  Value of BSTR.

Latest revision as of 01:56, 21 August 2019


The method of interface of PDF-XChange Editor SDK.

Syntax

HRESULT GetDocFeaturePermission([in]           BSTR   sDocPath,
                                [in]           BSTR   sFeatureName,
                                [out, retval]  LONG*  nPerm);

Parameters

sDocPath
[in] Value of BSTR.
sFeatureName
[in] Value of BSTR.
nPerm
[out, retval] Pointer to LONG.

Return Value

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

See Also

IPXV_Inst