com.aspose.words
Class VerticalAlignment

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

public class VerticalAlignment 
extends java.lang.Object

Utility class containing constants. Specifies vertical alignment of a floating shape, text frame or a floating table.

Example:

Shows how to insert a floating image in the middle of a page.
// This creates a builder and also an empty document inside the builder.
DocumentBuilder builder = new DocumentBuilder();

// By default, the image is inline.
Shape shape = builder.insertImage(getMyDir() + "Aspose.Words.gif");

// Make the image float, put it behind text and center on the page.
shape.setWrapType(WrapType.NONE);
shape.setBehindText(true);
shape.setRelativeHorizontalPosition(RelativeHorizontalPosition.PAGE);
shape.setHorizontalAlignment(HorizontalAlignment.CENTER);
shape.setRelativeVerticalPosition(RelativeVerticalPosition.PAGE);
shape.setVerticalAlignment(VerticalAlignment.CENTER);

builder.getDocument().save(getMyDir() + "Image.CreateFloatingPageCenter Out.doc");
See Also:
ShapeBase.VerticalAlignment

Field Summary
static final intNONE
           The object is explicitly positioned, usually using its Top property.
static final intTOP
           Specifies that the object shall be at the top of the vertical alignment base.
static final intCENTER
           Specifies that the object shall be centered with respect to the vertical alignment base.
static final intBOTTOM
           Specifies that the object shall be at the bottom of the vertical alignment base.
static final intINSIDE
           Specifies that the object shall be inside of the horizontal alignment base.
static final intOUTSIDE
           Specifies that the object shall be outside of the vertical alignment base.
static final intINLINE
           Not documented. Seems to be a possible value for floating paragraphs and tables.
static final intDEFAULT
           Same as NONE.
 

Field Detail

NONE

public static final int NONE
The object is explicitly positioned, usually using its Top property.

TOP

public static final int TOP
Specifies that the object shall be at the top of the vertical alignment base.

CENTER

public static final int CENTER
Specifies that the object shall be centered with respect to the vertical alignment base.

BOTTOM

public static final int BOTTOM
Specifies that the object shall be at the bottom of the vertical alignment base.

INSIDE

public static final int INSIDE
Specifies that the object shall be inside of the horizontal alignment base.

OUTSIDE

public static final int OUTSIDE
Specifies that the object shall be outside of the vertical alignment base.

INLINE

public static final int INLINE
Not documented. Seems to be a possible value for floating paragraphs and tables.

DEFAULT

public static final int DEFAULT
Same as NONE.

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