// 新規ワークブックの作成 var workbook = new GrapeCity.Documents.Excel.Workbook(); // シートインデックスを使用してワークシートを取得 IWorksheet worksheet = workbook.Worksheets[0]; Stream stream = this.GetResourceStream("logo.png"); byte[] imageBytes = new byte[stream.Length]; stream.Read(imageBytes, 0, imageBytes.Length); // ワークシートに背景画像を追加 worksheet.BackgroundPicture = imageBytes; // xlsx ファイルに保存 workbook.Save("SetBackgroundImage.xlsx");
' 新規ワークブックの作成 Dim workbook As New Workbook ' シートインデックスを使用してワークシートを取得 Dim worksheet As IWorksheet = workbook.Worksheets(0) Dim stream As Stream = GetResourceStream("logo.png") Dim imageBytes As Byte() = New Byte(CInt(stream.Length) - 1) {} stream.Read(imageBytes, 0, imageBytes.Length) ' ワークシートに背景画像を追加 worksheet.BackgroundPicture = imageBytes ' xlsx ファイルに保存 workbook.Save("SetBackgroundImage.xlsx")