Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin

...

Description

Excerpt

Sets or returns the 23-character

...

license

...

key

...

that

...

enables

...

ExcelWriter

...

for

...

the

...

current

...

instance.

...

Signature
C#
C#
 public System.String LicenseKey{ get; set; }
{signature}{signature:
}
Signature
vb.net
vb.net
Public Property LicenseKey() As String
{signature}
{remarks}
This key does not persist once the code completes execution. If this property is set, ExcelWriter will use this key and ignore any keys in the registry.
{remarks}
{example}{code:csharp|title=C#}
Remarks

This key does not persist once the code completes execution. If this property is set, ExcelWriter will use this key and ignore any keys in the registry.

Example
Code Block
csharp
csharp
titleC#


          //--- Get LicenseKey
          string key = xlt.LicenseKey;

          '--- Set LicenseKey
          xlt.LicenseKey = "XXXXXX-XXXX-XXXX-XXXXXX";
        
{code} {code:
Code Block
vb.net
|title=
vb.net
titlevb.net
}


         '--- Get LicenseKey
          Dim key As String = xlt.LicenseKey

          '--- Set LicenseKey
          xlt.LicenseKey = "XXXXXX-XXXX-XXXX-XXXXXX"
        
{code} {example}