com.aspose.words
Class PageVerticalAlignment

java.lang.Object
    extended by com.aspose.words.PageVerticalAlignment

public class PageVerticalAlignment 
extends java.lang.Object

Utility class containing constants. Specifies vertical justification of text on each page.

Example:

Shows how to apply and revert page setup settings to sections in a document.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);

// Modify the page setup properties for the builder's current section and add text.
builder.getPageSetup().setOrientation(Orientation.LANDSCAPE);
builder.getPageSetup().setVerticalAlignment(PageVerticalAlignment.CENTER);
builder.writeln("This is the first section, which landscape oriented with vertically centered text.");

// If we start a new section using a document builder,
// it will inherit the builder's current page setup properties.
builder.insertBreak(BreakType.SECTION_BREAK_NEW_PAGE);

Assert.assertEquals(Orientation.LANDSCAPE, doc.getSections().get(1).getPageSetup().getOrientation());
Assert.assertEquals(PageVerticalAlignment.CENTER, doc.getSections().get(1).getPageSetup().getVerticalAlignment());

// We can revert its page setup properties to their default values using the "ClearFormatting" method.
builder.getPageSetup().clearFormatting();

Assert.assertEquals(Orientation.PORTRAIT, doc.getSections().get(1).getPageSetup().getOrientation());
Assert.assertEquals(PageVerticalAlignment.TOP, doc.getSections().get(1).getPageSetup().getVerticalAlignment());

builder.writeln("This is the second section, which is in default Letter paper size, portrait orientation and top alignment.");

doc.save(getArtifactsDir() + "PageSetup.ClearFormatting.docx");
See Also:
PageSetup, PageSetup.VerticalAlignment

Field Summary
static final intBOTTOM = 3
           Text is aligned at the bottom of the page.
static final intCENTER = 1
           Text is aligned in the middle of the page.
static final intJUSTIFY = 2
           Text is spread to fill the page.
static final intTOP = 0
           Text is aligned at the top of the page.
 

Field Detail

BOTTOM = 3

public static final int BOTTOM
Text is aligned at the bottom of the page.

CENTER = 1

public static final int CENTER
Text is aligned in the middle of the page.

JUSTIFY = 2

public static final int JUSTIFY
Text is spread to fill the page.

TOP = 0

public static final int TOP
Text is aligned at the top of the page.

See Also:
          Aspose.Words Documentation - the home page for the Aspose.Words Product Documentation.
          Aspose.Words Support Forum - our preferred method of support.