Bir Çalışma Sayfasının Arka Plan Resmini Ayarla

Bu makaledeki kod örnekleri, aşağıda ekran görüntüsündeki gibi, tekrarlanan bir arka plan görüntüsüne sahip bir çalışma sayfası oluşturur.

Bir elektronik tabloya arka plan resmi uygulamak için:

  1. Bir çalışma kitabı oluşturun ve arka plan resmi uygulamak istediğiniz sayfaya erişin.
  2. Arka plan resmini uygulayın.
  3. Çalışma kitabını kaydedin.

Aşağıda verilen kod örnekleri, bunu önce VSTO ile, C# veya Visual Basic kullanarak veya Aspose.Cells for .NET ile, yine C# veya Visual Basic kullanarak nasıl yapılacağını gösterir.

Bu makaledeki kod örnekleri, aşağıdaki ekran görüntüsündeki gibi tekrarlayan bir arka plan resmi olan bir çalışsayfa oluşturur.

Çalışsayfa için bir arka plan belirlenmiştir.

todo:image_alt_text

Bir çalışma sayfası için arka plan belirlendi.

C#

 .......



using Microsoft.VisualStudio.Tools.Applications.Runtime;

using Excel = Microsoft.Office.Interop.Excel;

using Office = Microsoft.Office.Core;

using System.Reflection;

.......

//Instantiate the Application object.

Excel.ApplicationClass ExcelApp = new Excel.ApplicationClass();

//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("e:\\test\\school.jpg");

//Save the excel file.

objBook.SaveCopyAs("c:\\BackgroundPicBook.xls");

//Quit the Application.

ExcelApp.Quit();

Aspose.Cells for .NET ile Arka Plan Resimleri Belirleme

C#

 .......

using 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 = @"e:\test\school.jpg";

//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(@"c:\BackgroundPicBook.xls");