Click or drag to resize

PdfMetamorphosisSetLicense Method


Activate your copy after purchasing or use temporary license for delete trial message. ATTENTION: specify this property first of all before creating the instance of PDF Metamorphosis!

Use it when you got own license. We offer two license types:

Permanent license from sautinsoft.com and

Temporary license from start-for-free.

Have question? Ask us: support@sautinsoft.com.

Namespace: SautinSoft
Assembly: PdfMetamorphosis (in PdfMetamorphosis.dll) Version: 2024.1.12
Syntax
public static void SetLicense(
	string License
)

Parameters

License  String
A string which contains a license. To get a permanent license, visit sautinsoft.com. To get a temporary license, please use online form here: https://sautinsoft.com/start-for-free/.
Example
Activate the component after purchasing in C#
using System;
using System.IO;
using System.Collections;
using SautinSoft;

namespace Sample
{
    class Test
    {

        static void Main(string[] args)
        {
            // Get your free 30-day key here:   
            // https://sautinsoft.com/start-for-free/

            // Activate your license here
            PdfMetamorphosis.SetLicense("1234567890");

            // Place your serial(s) number.
            // You will get own serial number(s) after purchasing the license.
            // If you will have any questions, email us to sales@sautinsoft.com or ask at online chat https://www.sautinsoft.com.

            SautinSoft.PdfMetamorphosis p = new SautinSoft.PdfMetamorphosis();

            string docxPath = @"..\..\..\example.docx";
            string pdfPath = Path.ChangeExtension(docxPath, ".pdf");
            if (p.DocxToPdfConvertFile(docxPath, pdfPath) == 0)
                    System.Diagnostics.Process.Start(new System.Diagnostics.ProcessStartInfo(pdfPath) { UseShellExecute = true });
        }
    }
}
Activate the component after purchasing in VB.Net
Imports System
Imports System.IO
Imports System.Collections

Namespace Sample
    Friend Class Test

        Shared Sub Main(ByVal args() As String)
            ' Get your free 30-day key here:   
            ' https://sautinsoft.com/start-for-free/

            ' Activation of PDF Metamorphosis .Net after purchasing
              SautinSoft.PdfMetamorphosis.SetLicense("1234567890")

            ' Place your serial(s) number.
            ' You will get own serial number(s) after purchasing the license.
            ' If you will have any questions, email us to sales@sautinsoft.com or ask at online chat https://www.sautinsoft.com.

            Dim p As New SautinSoft.PdfMetamorphosis()

            Dim docxPath As String = "..\..\..\example.docx"
            Dim pdfPath As String = Path.ChangeExtension(docxPath, ".pdf")
            If p.DocxToPdfConvertFile(docxPath, pdfPath) = 0 Then
                System.Diagnostics.Process.Start(New System.Diagnostics.ProcessStartInfo(pdfPath) With {.UseShellExecute = True})
            End If
        End Sub
    End Class
End Namespace
See Also