PDFNetInitialize Method (String) |
Initializes PDFNet library.
Initialize() is usually called once, during process initialization.
Namespace:
pdftron
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public static void Initialize(
string lic_key
)
Public Shared Sub Initialize (
lic_key As String
)
public:
static void Initialize(
[InAttribute] String^ lic_key
)
pdftron.PDFNet.Initialize = function(lic_key);
Parameters
- lic_key
- Type: SystemString
The license key used to activate the product.
If the license_key is not specified, the product will work in demo mode.
If the license_key is invalid, the function will throw an exception.
Remarks
With the exception of SetPersistentCache and SetTempPath, it is unsafe to call any other PDFNet API without first initializing the library.
See Also