Move
Picture.Move method
Resmi belirtilen bir konuma taşır.
public void Move(int upperLeftRow, int upperLeftColumn)
Parametre | Tip | Tanım |
---|---|---|
upperLeftRow | Int32 | Sol üst satır dizini. |
upperLeftColumn | Int32 | Sol üst sütun dizini. |
Örnekler
[C#]
//Bir Çalışma Kitabı nesnesini başlatma
Workbook workbook = new Workbook();
Worksheet worksheet = workbook.Worksheets[0];
//Çalışma sayfasında satır ve sütun indeksleri 1 olan bir hücrenin bulunduğu yere resim ekleme. "B2" hücresidir
int imgIndex = worksheet.Pictures.Add(1, 1, "example.jpeg");
// Eklenen resim nesnesini al
Picture pic = worksheet.Pictures[imgIndex];
// Resmin yeni konumunu ayarla
pic.Move(2, 4);
//Excel dosyasını kaydedin.
workbook.Save("result.xlsx");
Ayrıca bakınız
- class Picture
- ad alanı Aspose.Cells.Drawing
- toplantı Aspose.Cells