LicenseSetLicense Method (String) |
Licenses the component.
Namespace: GroupDocs.SignatureAssembly: GroupDocs.Signature (in GroupDocs.Signature.dll) Version: 22.4.0.0 (22.4)
Syntaxpublic void SetLicense(
string licensePath
)
Public Sub SetLicense (
licensePath As String
)
public:
void SetLicense(
String^ licensePath
)
member SetLicense :
licensePath : string -> unit
Parameters
- licensePath
- Type: SystemString
The license path.
Examples
The following example demonstrates how to set a license
passing a path to the license file.
string licensePath = "GroupDocs.Signature.lic";
GroupDocs.Signature.License lic = new GroupDocs.Signature.License();
lic.SetLicense(licensePath);
See Also