|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.apache.poi.xslf.usermodel.VerticalAlignment
public class VerticalAlignment
Specifies a list of available anchoring types for text
Field Summary | |
---|---|
static VerticalAlignment |
BOTTOM
Anchor the text at the bottom of the bounding rectangle. |
static VerticalAlignment |
DISTRIBUTED
Anchor the text so that it is distributed vertically. |
static VerticalAlignment |
JUSTIFIED
Anchor the text so that it is justified vertically. |
static VerticalAlignment |
MIDDLE
Anchor the text at the middle of the bounding rectangle |
static VerticalAlignment |
TOP
Anchor the text at the top of the bounding rectangle |
Constructor Summary | |
---|---|
VerticalAlignment(int ordinal)
|
Method Summary | |
---|---|
int |
ordinal()
|
static VerticalAlignment[] |
values()
|
Methods inherited from class java.lang.Object |
---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public static final VerticalAlignment TOP
public static final VerticalAlignment MIDDLE
public static final VerticalAlignment BOTTOM
public static final VerticalAlignment JUSTIFIED
When text is horizontal, this spaces out the actual lines of
text and is almost always identical in behavior to
DISTRIBUTED
(special case: if only 1 line, then anchored at top).
When text is vertical, then it justifies the letters
vertically. This is different than DISTRIBUTED
= new VerticalAlignment();
because in some cases such as very little text in a line = new VerticalAlignment();
it will not justify.
public static final VerticalAlignment DISTRIBUTED
When text is horizontal, this spaces out the actual lines
of text and is almost always identical in behavior to
JUSTIFIED
(special case: if only 1 line, then anchored in middle).
When text is vertical, then it distributes the letters vertically.
This is different than JUSTIFIED
, because it always forces distribution
of the words, even if there are only one or two words in a line.
Constructor Detail |
---|
public VerticalAlignment(int ordinal)
Method Detail |
---|
public int ordinal()
public static VerticalAlignment[] values()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |