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: SautinSoftAssembly: PdfMetamorphosis (in PdfMetamorphosis.dll) Version: 2025.2.25
Syntaxpublic static void SetLicense(
string License
)
Public Shared Sub SetLicense (
License As String
)
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/.
ExampleActivate 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)
{
PdfMetamorphosis.SetLicense("1234567890");
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)
SautinSoft.PdfMetamorphosis.SetLicense("1234567890")
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