Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0
Description

Excerpt

Sets or returns the license key used for this instance of WordApplication. This property is mainly used for debugging purposes. For managing your license keys, please use the License Key Manager that is installed with OfficeWriter.

{signature}
{example}{code:csharp|title=C#}

          //--- Return license key
          string key = oWordApplication.LicenseKey;

          //--- Set license key
          oWordApplication.LicenseKey = "XXXXXX-XXXX-XXXX-XXXXXX";
        
{code}
{code:vb.net
|title=vb.net
}

          '--- Return license key
          Dim key As String = oWordApplication.LicenseKey

          '--- Set license key
          oWordApplication.LicenseKey = "XXXXXX-XXXX-XXXX-XXXXXX"
        {code}

{example}
Signature
C#C#
Wiki Markup
{description}
{excerpt}Sets or returns the license key used for this instance of [WordApplication|WordApplication]. This property is mainly used for debugging purposes.  For managing your license keys, please use the License Key Manager that is installed with OfficeWriter.{excerpt}
{signature:C#}
 public System.String LicenseKey{ get; set; }
Signature
{signature}{signature:vb.net
vb.net
}
Public Property LicenseKey() As String
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle