mirror of https://github.com/apache/poi.git
support align=distributed in HSSFTextbox
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@637870 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
ce25bbe14a
commit
0d24e6983f
|
@ -37,6 +37,7 @@ public class HSSFTextbox
|
|||
public final static short HORIZONTAL_ALIGNMENT_CENTERED = 2;
|
||||
public final static short HORIZONTAL_ALIGNMENT_RIGHT = 3;
|
||||
public final static short HORIZONTAL_ALIGNMENT_JUSTIFIED = 4;
|
||||
public final static short HORIZONTAL_ALIGNMENT_DISTRIBUTED = 7;
|
||||
|
||||
/**
|
||||
* How to align text vertically
|
||||
|
@ -45,6 +46,7 @@ public class HSSFTextbox
|
|||
public final static short VERTICAL_ALIGNMENT_CENTER = 2;
|
||||
public final static short VERTICAL_ALIGNMENT_BOTTOM = 3;
|
||||
public final static short VERTICAL_ALIGNMENT_JUSTIFY = 4;
|
||||
public final static short VERTICAL_ALIGNMENT_DISTRIBUTED= 7;
|
||||
|
||||
|
||||
int marginLeft, marginRight, marginTop, marginBottom;
|
||||
|
|
Loading…
Reference in New Issue