Class License

Class License

Namespace: Aspose.TeX
Assembly: Aspose.TeX.dll (25.2.0)

Provides methods to license the component.

public class License

Inheritance

objectLicense

Inherited Members

object.GetType(), object.MemberwiseClone(), object.ToString(), object.Equals(object?), object.Equals(object?, object?), object.ReferenceEquals(object?, object?), object.GetHashCode()

Examples

In this example, an attempt will be made to find a license file named MyLicense.lic in the folder that contains

the component, in the folder that contains the calling assembly, in the folder of the entry assembly and then in the embedded resources of the calling assembly. ```csharp License license = new License(); license.SetLicense("MyLicense.lic"); ``` ```vb Dim license As license = New license License.SetLicense("MyLicense.lic") ``` the component jar file: ```csharp License license = new License(); license.setLicense("MyLicense.lic"); ```
 English