// ZIP ファイルストリームの作成 FileStream outputStream = new FileStream("SaveHtmlWithHeadingsAndGridlines.zip", FileMode.Create); // 新規ワークブックの作成 var workbook = new GrapeCity.Documents.Excel.Workbook(); Stream fileStream = this.GetResourceStream("xlsx\\Home maintenance schedule and task list.xlsx"); workbook.Open(fileStream); HtmlSaveOptions options = new HtmlSaveOptions(); // 行/列のヘッダーを出力するか設定 options.ExportHeadings = true; // グリッドラインを出力するか設定 options.ExportGridlines = true; // 出力するHTMLのファイル名を設定 options.ExportFileName = "schedule"; workbook.Save(outputStream, options); // ZIP ストリームを閉じる outputStream.Close();
' ZIP ファイルストリームの作成 Dim outputStream = File.Create("SaveHtmlWithHeadingsAndGridlines.zip") ' 新規ワークブックの作成 Dim workbook As New Workbook Dim fileStream As Stream = GetResourceStream("xlsx\Home maintenance schedule and task list.xlsx") workbook.Open(fileStream) Dim options As New HtmlSaveOptions With options ' 行/列のヘッダーを出力するか設定 .ExportHeadings = True ' グリッドラインを出力するか設定 .ExportGridlines = True ' 出力するHTMLのファイル名を設定 .ExportFileName = "schedule" End With workbook.Save(outputStream, options) ' ZIP ストリームを閉じる outputStream.Close()