Class License
Class License
Namespace: Aspose.TeX
Assembly: Aspose.TeX.dll (25.4.0)
Provides methods to license the component.
public class License
Inheritance
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
License license = new License();
license.SetLicense("MyLicense.lic");
Dim license As license = New license
License.SetLicense("MyLicense.lic")
```</ms><java>
the component jar file:
```csharp
License license = new License();
license.setLicense("MyLicense.lic");
```</java>