java.lang.Object
com.aspose.words.RelativeHorizontalSize
public class RelativeHorizontalSize
- extends java.lang.Object
Utility class containing constants.
Specifies relatively to what the width of a shape or a text frame is calculated horizontally.
Example:
Shows how to set relative size and position.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
// Adding a simple shape with absolute size and position.
Shape shape = builder.insertShape(ShapeType.RECTANGLE, 100.0, 40.0);
// Set WrapType to WrapType.None since Inline shapes are automatically converted to absolute units.
shape.setWrapType(WrapType.NONE);
// Checking and setting the relative horizontal size.
if (shape.getRelativeHorizontalSize() == RelativeHorizontalSize.DEFAULT)
{
// Setting the horizontal size binding to Margin.
shape.setRelativeHorizontalSize(RelativeHorizontalSize.MARGIN);
// Setting the width to 50% of Margin width.
shape.setWidthRelative(50f);
}
// Checking and setting the relative vertical size.
if (shape.getRelativeVerticalSize() == RelativeVerticalSize.DEFAULT)
{
// Setting the vertical size binding to Margin.
shape.setRelativeVerticalSize(RelativeVerticalSize.MARGIN);
// Setting the heigh to 30% of Margin height.
shape.setHeightRelative(30f);
}
// Checking and setting the relative vertical position.
if (shape.getRelativeVerticalPosition() == RelativeVerticalPosition.PARAGRAPH)
{
// etting the position binding to TopMargin.
shape.setRelativeVerticalPosition(RelativeVerticalPosition.TOP_MARGIN);
// Setting relative Top to 30% of TopMargin position.
shape.setTopRelative(30f);
}
// Checking and setting the relative horizontal position.
if (shape.getRelativeHorizontalPosition() == RelativeHorizontalPosition.DEFAULT)
{
// Setting the position binding to RightMargin.
shape.setRelativeHorizontalPosition(RelativeHorizontalPosition.RIGHT_MARGIN);
// The position relative value can be negative.
shape.setLeftRelative(-260);
}
doc.save(getArtifactsDir() + "Shape.RelativeSizeAndPosition.docx");
- See Also:
- ShapeBase.RelativeHorizontalSize
|
Field Summary |
static final int | MARGIN = 0 | |
|
Specifies that the width is calculated relatively to the space between the left and the right margins.
|
static final int | PAGE = 1 | |
|
Specifies that the width is calculated relatively to the page width.
|
static final int | LEFT_MARGIN = 2 | |
|
Specifies that the width is calculated relatively to the left margin area size.
|
static final int | RIGHT_MARGIN = 3 | |
|
Specifies that the width is calculated relatively to the right margin area size.
|
static final int | INNER_MARGIN = 4 | |
|
Specifies that the width is calculated relatively to the inside margin area size,
to the left margin area size for odd pages and to the right margin area size for even pages.
|
static final int | OUTER_MARGIN = 5 | |
|
Specifies that the width is calculated relatively to the outside margin area size,
to the right margin area size for odd pages and to the left margin area size for even pages.
|
static final int | DEFAULT = 1 | |
|
Default value is MARGIN.
|
MARGIN = 0 | |
public static final int MARGIN |
-
Specifies that the width is calculated relatively to the space between the left and the right margins.
PAGE = 1 | |
public static final int PAGE |
-
Specifies that the width is calculated relatively to the page width.
LEFT_MARGIN = 2 | |
public static final int LEFT_MARGIN |
-
Specifies that the width is calculated relatively to the left margin area size.
RIGHT_MARGIN = 3 | |
public static final int RIGHT_MARGIN |
-
Specifies that the width is calculated relatively to the right margin area size.
INNER_MARGIN = 4 | |
public static final int INNER_MARGIN |
-
Specifies that the width is calculated relatively to the inside margin area size,
to the left margin area size for odd pages and to the right margin area size for even pages.
OUTER_MARGIN = 5 | |
public static final int OUTER_MARGIN |
-
Specifies that the width is calculated relatively to the outside margin area size,
to the right margin area size for odd pages and to the left margin area size for even pages.
DEFAULT = 1 | |
public static final int DEFAULT |
-
Default value is MARGIN.
See Also:
Aspose.Words Documentation - the home page for the Aspose.Words Product Documentation.
Aspose.Words Support Forum - our preferred method of support.