Package com.grapecity.documents.excel
Enum Class HorizontalAlignment
- All Implemented Interfaces:
Serializable,Comparable<HorizontalAlignment>,Constable
Specifies the horizontal alignment of a cell or object.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionSpedifies that the text should be centered.Specifies that the horizontal alignment is centered across multiple cells.Specifies that text should wrap and be aligned to form straight edges on the left and right, including the last line.Specifies that the text will be repeated to fill the cell.Specifies that text is left justified, numbers (including dates and times) are right justified, and logical values are centered.Specifies that text should wrap and be aligned to form straight edges on the left and right, except for the last line which is left justified.Spedifies left justification.Spedifies right justification. -
Method Summary
Modifier and TypeMethodDescriptionstatic HorizontalAlignmentReturns the enum constant of this class with the specified name.static HorizontalAlignment[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
General
Specifies that text is left justified, numbers (including dates and times) are right justified, and logical values are centered. -
Left
Spedifies left justification. -
Center
Spedifies that the text should be centered. -
Right
Spedifies right justification. -
Fill
Specifies that the text will be repeated to fill the cell. -
Justify
Specifies that text should wrap and be aligned to form straight edges on the left and right, except for the last line which is left justified. -
CenterContinuous
Specifies that the horizontal alignment is centered across multiple cells. The information about how many cells to span is expressed in the sheet part, in the row of the cell in question. For each cell that is spanned in the alignment, a cell element needs to be written out, with the same style Id which references the centerContinuous alignment. -
Distributed
Specifies that text should wrap and be aligned to form straight edges on the left and right, including the last line.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-