Spread.Sheets > 開発者の手引き > データの管理 > ExcelIOコンポーネント > ライセンスキーの設定 |
ExcelIOコンポーネントの動作には、ライセンスキーの設定が必要です。次の手順を実行して、ExcelIOコンポーネントにライセンスキーを設定します。
ライセンスキーの設定例
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; |