Spread.Sheets
ライセンスキーの設定

ExcelIOコンポーネントの動作には、ライセンスキーの設定が必要です。次の手順を実行して、ExcelIOコンポーネントにライセンスキーを設定します。

  1. 開発アプリケーションでExcelIOコンポーネントを参照し、ExcelIO入出力処理を実装します。
  2. Importer または Expoter インスタンスの生成処理より前に GrapeCity.Spread.Sheets.License.LicenseKey 変数へのライセンスキー設定を記述します。以下はその例です。

    ライセンスキーの設定例

    C#
    コードのコピー

    GrapeCity.Spread.Sheets.License.LicenseKey = "xxx"; // "xxx"の部分にライセンスキー文字列を設定します

    Importer importer = new Importer();

    string result = importer.ImportExcel(file.InputStream, flags, password);

    importer = null;

    result = HttpUtility.HtmlEncode(result);

    return result;


© 2016-2017, GrapeCity inc. All rights reserved.