Ange bakgrundsbild för ett arbetsblad i VSTO och Aspose.Cells

För att tillämpa en bakgrundsbild på ett kalkylblad:

  1. Skapa en arbetsbok och kom åt det blad du vill tillämpa en bakgrundsbild på.
  2. Tillämpa bakgrundsbilden.
  3. Spara arbetsboken.

Kodexemplen nedan visar hur man gör detta först med VSTO, med antingen C# eller Visual Basic, och sedan med Aspose.Cells for .NET, igen med antingen C# eller Visual Basic.

Kodexemplen i den här artikeln skapar en kalkylblad med en bakgrundsbild som upprepas, liknande den i skärmbilden nedan.

todo:image_alt_text

En bakgrund har ställts in för kalkylbladet.

VSTO

 //Instantiate the Application object.

Excel.Application ExcelApp = Application;

//Add a Workbook.

Excel.Workbook objBook = ExcelApp.Workbooks.Add(System.Reflection.Missing.Value);

//Get the First sheet.

Excel.Worksheet objSheet = (Excel.Worksheet)objBook.Sheets["Sheet1"];

//Set a background picture for the sheet.

objSheet.SetBackgroundPicture("pic.jpeg");

//Save the excel file.

objBook.SaveCopyAs("BackgroundPicBook.xls");

//Quit the Application.

ExcelApp.Quit();

Aspose.Cells

 //Instantiate a new Workbook.

Workbook workbook = new Workbook();

//Get the first worksheet.

Worksheet sheet = workbook.Worksheets[0];

//Define a string variable to store the image path.

string ImageUrl = "pic.jpeg";

//Get the picture into the streams.

FileStream fs = File.OpenRead(ImageUrl);

//Define a byte array.

byte[] imageData = new Byte[fs.Length];

//Obtain the picture into the array of bytes from streams.

fs.Read(imageData, 0, imageData.Length);

//Close the stream.

fs.Close();

//Set the background image for the sheet.

sheet.SetBackground(imageData);

//Save the excel file.

workbook.Save("BackgroundPicBook.xls");

Ladda ned provkoden