IPXV_Control::SetLicKey Method

From PDF XChange PDF SDK
Jump to: navigation, search
m (Automatic page editing by robot)
m (Automatic page editing by robot)
Line 8: Line 8:
  
 
== Syntax ==
 
== Syntax ==
<pre class="brush:cpp;gutter:false">HRESULT SetLicKey([in]          BSTR          sKey,
+
<pre class="brush:cpp;gutter:false">HRESULT SetLicKey([in]          BSTR          Key,
                   [out, retval]  VARIANT_BOOL*  bKeyOK);</pre>
+
                   [out, retval]  VARIANT_BOOL*  KeyOK);</pre>
  
 
== Parameters ==
 
== Parameters ==
;sKey
+
;Key
 
:[in]  The unicode string that contains the body of the license key.
 
:[in]  The unicode string that contains the body of the license key.
;bKeyOK
+
;KeyOK
 
:[out, retval]  Returns the <tt>true</tt> value when key is valid and approved and <tt>false</tt> otherwise.
 
:[out, retval]  Returns the <tt>true</tt> value when key is valid and approved and <tt>false</tt> otherwise.
  

Revision as of 07:26, 12 June 2015


Specifies the developer's license key to prevent showing the DEMO labels across the pages.

Syntax

HRESULT SetLicKey([in]           BSTR           Key,
                  [out, retval]  VARIANT_BOOL*  KeyOK);

Parameters

Key
[in] The unicode string that contains the body of the license key.
KeyOK
[out, retval] Returns the true value when key is valid and approved and false otherwise.

Return Value

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

See Also

IPXV_Control