Lizenzschlüssel in IronXL for Python anwenden
Der Lizenzschlüssel ist eine lange Zeichenkette, die mit einem Ablaufdatum endet. Bitte stellen Sie sicher, dass dieser korrekt kopiert wird, ohne Leerzeichen.
# Apply the license key to the IronXL library
# Replace 'YOUR_LICENSE_KEY' with your actual license key string
IronXL.License.Key = "IRONXL-MYLICENSE-KEY-RENEW.SUPPORT.01.JAN.2050"
# Apply the license key to the IronXL library
# Replace 'YOUR_LICENSE_KEY' with your actual license key string
IronXL.License.Key = "IRONXL-MYLICENSE-KEY-RENEW.SUPPORT.01.JAN.2050"
Die robusteste Methode, einen Lizenzschlüssel anzuwenden, besteht darin, ihn direkt in Ihrem Code vor dem Aufruf der Bibliothek zu verwenden.
# Set the license key for the IronXL library at the start of your program
# This helps to ensure that the library recognizes your license as soon as it is needed
IronXL.License.Key = "IRONXL-MYLICENSE-KEY-RENEW.SUPPORT.01.JAN.2050"
# Set the license key for the IronXL library at the start of your program
# This helps to ensure that the library recognizes your license as soon as it is needed
IronXL.License.Key = "IRONXL-MYLICENSE-KEY-RENEW.SUPPORT.01.JAN.2050"
Weitere Optionen, einschließlich der Konfiguration über web.config und appsettings.json, finden Sie auf der folgenden FAQ-Seite:

