java.lang.Object
com.aspose.words.HorizontalAlignment
public class HorizontalAlignment
- extends java.lang.Object
Utility class containing constants.
Specifies horizontal alignment of a floating shape, text frame or 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.HorizontalAlignment
Field Summary |
static final int | NONE = 0 | |
The object is explicitly positioned, usually using its Left property.
|
static final int | DEFAULT = 0 | |
Same as NONE.
|
static final int | LEFT = 1 | |
Specifies that the object shall be left aligned to the horizontal alignment base.
|
static final int | CENTER = 2 | |
Specifies that the object shall be centered with respect to the horizontal alignment base.
|
static final int | RIGHT = 3 | |
Specifies that the object shall be right aligned to the horizontal alignment base.
|
static final int | INSIDE = 4 | |
Specifies that the object shall be inside of the horizontal alignment base.
|
static final int | OUTSIDE = 5 | |
Specifies that the object shall be outside of the horizontal alignment base.
|
NONE = 0 | |
public static final int NONE |
-
The object is explicitly positioned, usually using its Left property.
DEFAULT = 0 | |
public static final int DEFAULT |
-
Same as NONE.
LEFT = 1 | |
public static final int LEFT |
-
Specifies that the object shall be left aligned to the horizontal alignment base.
CENTER = 2 | |
public static final int CENTER |
-
Specifies that the object shall be centered with respect to the horizontal alignment base.
RIGHT = 3 | |
public static final int RIGHT |
-
Specifies that the object shall be right aligned to the horizontal alignment base.
INSIDE = 4 | |
public static final int INSIDE |
-
Specifies that the object shall be inside of the horizontal alignment base.
OUTSIDE = 5 | |
public static final int OUTSIDE |
-
Specifies that the object shall be outside of the horizontal alignment base.
See Also:
Aspose.Words Documentation - the home page for the Aspose.Words Product Documentation.
Aspose.Words Support Forum - our preferred method of support.