IPXC_Document::AuthorizeWithPassword Method
From PDF XChange PDF SDK
m (Automatic page editing by robot) |
|||
(3 intermediate revisions by 2 users not shown) | |||
Line 3: | Line 3: | ||
{{#customTitle:IPXC_Document::AuthorizeWithPassword Method}} | {{#customTitle:IPXC_Document::AuthorizeWithPassword Method}} | ||
{{#parentPage:PXV:IPXC_Document#Methods|AuthorizeWithPassword|method}} | {{#parentPage:PXV:IPXC_Document#Methods|AuthorizeWithPassword|method}} | ||
− | |||
{{ToReview}} | {{ToReview}} | ||
Line 9: | Line 8: | ||
== Syntax == | == Syntax == | ||
− | <pre class="brush:cpp;gutter:false">HRESULT AuthorizeWithPassword([in] LPWSTR | + | <pre class="brush:cpp;gutter:false">HRESULT AuthorizeWithPassword([in] LPWSTR sPwd, |
− | [out, retval] PXC_PermStatus* | + | [out, retval] PXC_PermStatus* nStatus);</pre> |
== Parameters == | == Parameters == | ||
− | ; | + | ;sPwd |
:[in] Password to authorize. | :[in] Password to authorize. | ||
− | ; | + | ;nStatus |
:[out, retval] Returns [[PXV:PXC_PermStatus|PXC_PermStatus]] value that specifies if document was successfully authorized or not. | :[out, retval] Returns [[PXV:PXC_PermStatus|PXC_PermStatus]] value that specifies if document was successfully authorized or not. | ||
Latest revision as of 02:24, 15 June 2015
Tries to authorize documents, protected by Standard (Password protection) security handler, with specified password. Password specified as regular Unicode string that will be converted to UTF-8 or default ANSI code page depends of document security revision. If document is not protected by Standard security, the method will fail.
Syntax
HRESULT AuthorizeWithPassword([in] LPWSTR sPwd, [out, retval] PXC_PermStatus* nStatus);
Parameters
- sPwd
- [in] Password to authorize.
- nStatus
- [out, retval] Returns PXC_PermStatus value that specifies if document was successfully authorized or not.
Return Value
Returns S_OK if operation was successful or error code in other cases.