Şekli Çalışma Sayfasının Önüne veya Arkasına Gönder
Contents
[
Hide
]
Olası Kullanım Senaryoları
Aynı konumda birden çok şekil bulunduğunda, bunların nasıl görünür olacağına z-düzeni konumları tarafından karar verilir. Aspose.Cells sağlarShape.ToFrontOrBack()şeklin z sırası konumunu değiştiren yöntem. Şekli arkaya göndermek istiyorsanız -1, -2, -3 gibi negatif bir sayı, öne göndermek istiyorsanız 1, 2, 3, gibi pozitif bir sayı kullanacaksınız. vb.
Şekli Çalışma Sayfasının Önüne veya Arkasına Gönder
Aşağıdaki örnek kod, kullanımını açıklarShape.ToFrontOrBack() yöntem. Lütfen bkzörnek excel dosyası kodun içinde kullanılır veçıktı excel dosyası onun tarafından oluşturulur. Ekran görüntüsü, örnek Excel dosyasındaki kodun yürütme üzerindeki etkisini gösterir.
Basit kod
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET | |
//Load source Excel file | |
Workbook wb = new Workbook(sourceDir + "sampleToFrontOrBack.xlsx"); | |
//Access first worksheet | |
Worksheet ws = wb.Worksheets[0]; | |
//Access first and fourth shape | |
Shape sh1 = ws.Shapes[0]; | |
Shape sh4 = ws.Shapes[3]; | |
//Print the Z-Order position of the shape | |
Console.WriteLine("Z-Order Shape 1: " + sh1.ZOrderPosition); | |
//Send this shape to front | |
sh1.ToFrontOrBack(2); | |
//Print the Z-Order position of the shape | |
Console.WriteLine("Z-Order Shape 4: " + sh4.ZOrderPosition); | |
//Send this shape to back | |
sh4.ToFrontOrBack(-2); | |
//Save the output Excel file | |
wb.Save(outputDir + "outputToFrontOrBack.xlsx"); |