IPXC_DocumentInfo::GetInfoVar Method

From PDF XChange PDF SDK
Jump to: navigation, search
m (Automatic page editing by robot)
m (Automatic page editing by robot)
Line 7: Line 7:
  
 
== Syntax ==
 
== Syntax ==
<pre class="brush:cpp;gutter:false">HRESULT GetInfoVar([in]          LPWSTR            sKey,
+
<pre class="brush:cpp;gutter:false">HRESULT GetInfoVar([in]          LPWSTR            Key,
                   [out, retval]  IPXS_PDFVariant**  pValue);</pre>
+
                   [out, retval]  IPXS_PDFVariant**  Value);</pre>
  
 
== Parameters ==
 
== Parameters ==
;sKey
+
;Key
 
:[in]  Key from which the value will be taken.
 
:[in]  Key from which the value will be taken.
;pValue
+
;Value
 
:[out, retval]  Pointer to [[PXV:IPXS_PDFVariant|IPXS_PDFVariant]] containing the value of the given key.
 
:[out, retval]  Pointer to [[PXV:IPXS_PDFVariant|IPXS_PDFVariant]] containing the value of the given key.
  

Revision as of 07:02, 12 June 2015

Gets value from the Info dictionary of the structure document.

Syntax

HRESULT GetInfoVar([in]           LPWSTR             Key,
                   [out, retval]  IPXS_PDFVariant**  Value);

Parameters

Key
[in] Key from which the value will be taken.
Value
[out, retval] Pointer to IPXS_PDFVariant containing the value of the given key.

Return Value

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

See Also

IPXC_DocumentInfo