PageVerticalAlignment
İçindekiler
[
Saklamak
]PageVerticalAlignment enumeration
Her sayfadaki metnin dikey hizalamasını belirtir.
public enum PageVerticalAlignment
değerler
İsim | Değer | Tanım |
---|---|---|
Bottom | 3 | Metin sayfanın altına hizalanmıştır. |
Center | 1 | Metin sayfanın ortasına hizalanır. |
Justify | 2 | Metin sayfayı dolduracak şekilde yayılır. |
Top | 0 | Metin sayfanın üst kısmına hizalanır. |
Örnekler
Sayfa yapısı ayarlarının bir belgedeki bölümlere nasıl uygulanacağını ve geri döndürüleceğini gösterir.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
// Oluşturucunun geçerli bölümü için sayfa düzeni özelliklerini değiştirin ve metin ekleyin.
builder.PageSetup.Orientation = Orientation.Landscape;
builder.PageSetup.VerticalAlignment = PageVerticalAlignment.Center;
builder.Writeln("This is the first section, which landscape oriented with vertically centered text.");
// Bir belge oluşturucu kullanarak yeni bir bölüme başlarsak,
// oluşturucunun mevcut sayfa düzeni özelliklerini devralacaktır.
builder.InsertBreak(BreakType.SectionBreakNewPage);
Assert.AreEqual(Orientation.Landscape, doc.Sections[1].PageSetup.Orientation);
Assert.AreEqual(PageVerticalAlignment.Center, doc.Sections[1].PageSetup.VerticalAlignment);
// "ClearFormatting" yöntemini kullanarak sayfa düzeni özelliklerini varsayılan değerlerine döndürebiliriz.
builder.PageSetup.ClearFormatting();
Assert.AreEqual(Orientation.Portrait, doc.Sections[1].PageSetup.Orientation);
Assert.AreEqual(PageVerticalAlignment.Top, doc.Sections[1].PageSetup.VerticalAlignment);
builder.Writeln("This is the second section, which is in default Letter paper size, portrait orientation and top alignment.");
doc.Save(ArtifactsDir + "PageSetup.ClearFormatting.docx");
Ayrıca bakınız
- class PageSetup
- property VerticalAlignment
- ad alanı Aspose.Words
- toplantı Aspose.Words