Class License

License class

Provides methods to license the component.

public class License

Constructors

NameDescription
License()Initializes a new instance of this class.

Methods

NameDescription
SetLicense(Stream)Licenses the component.
SetLicense(string)Licenses the component.

Examples

namespace AsposeCellsExamples
{
    using Aspose.Cells;
    using System;
    using System.IO;

    public class LicenseDemo
    {
        public static void LicenseExample()
        {
            // Create an instance of the License class
            License license = new License();

            // Set the license using a license file name
            license.SetLicense("Aspose.Cells.NET.lic");

            // Alternatively, set the license using a stream
            using (FileStream licenseStream = new FileStream("Aspose.Cells.NET.lic", FileMode.Open))
            {
                license.SetLicense(licenseStream);
            }

            // Additional code to demonstrate the usage of licensed Aspose.Cells functionality
            Workbook workbook = new Workbook();
            Worksheet worksheet = workbook.Worksheets[0];
            worksheet.Cells[0, 0].PutValue("Hello, Aspose.Cells!");

            // Save the workbook to verify the license is applied correctly
            workbook.Save("LicensedWorkbook.xlsx");

            return;
        }
    }
}

See Also