Install a system license.
Syntax

[C#]

static bool InstallSystemLicense(string key);

[Visual Basic]

Shared Function InstallSystemLicense(key As String) As Boolean
Params
Name Description
return True if a license is installed, otherwise false.
Notes

You are unlikely ever to need to call this method as it is for internal use. In general you should be using one of the other license installation methods unless specifically advised otherwise.

Use this method to install a system license. Call this method at application startup before any ImageGlue objects have been created.

This method writes to the registry. The license will be available to all processes using ImageGlue. The license installed with 32-bit ImageGlue will not be available to 64-bit ImageGlue, and vice versa.

See Also

LicenseDescription

InstallRedistributionLicense

InstallTrialLicense

Example

None.