com.aspose.cells

  • java.lang.Object
    • com.aspose.cells.Style
public class Style 
extends java.lang.Object

Represents display style of excel document,such as font,color,alignment,border,etc.
The Style object contains all style attributes (font, number format, alignment, and so on) as properties. There are two methods to set a cell's style.

Example:

//First method
Style style1 = excel.getWorksheets().get(0).getCells().get("A1").getStyle();
style1.getFont().setName("Times New Roman");
style1.getFont().setColor(Color.getBlue());
excel.getWorksheets().get(0).getCells().get("A1").setStyle(style1);

Constructor Summary
Style()
Initializes a new instance of the Style class.
 
Property Getters/Setters Summary
intgetBackgroundArgbColor()
void
           Gets and sets the background color with a 32-bit ARGB value.
com.aspose.cells.ColorgetBackgroundColor()
void
setBackgroundColor(com.aspose.cells.Colorvalue)
           Gets or sets a style's background color.
ThemeColorgetBackgroundThemeColor()
void
           Gets and sets the background theme color.
BorderCollectiongetBorders()
Gets the BorderCollection of the style.
java.lang.StringgetCultureCustom()
void
setCultureCustom(java.lang.Stringvalue)
           Gets and sets the culture-dependent pattern string for number format. If no number format has been set for this object, null will be returned. If number format is builtin, the pattern string corresponding to the builtin number will be returned.
java.lang.StringgetCustom()
void
setCustom(java.lang.Stringvalue)
           Represents the custom number format string of this style object. If the custom number format is not set(For example, the number format is builtin), "" will be returned.
FontgetFont()
Gets a Font object.
intgetForegroundArgbColor()
void
           Gets and sets the foreground color with a 32-bit ARGB value.
com.aspose.cells.ColorgetForegroundColor()
void
setForegroundColor(com.aspose.cells.Colorvalue)
           Gets or sets a style's foreground color.
ThemeColorgetForegroundThemeColor()
void
           Gets and sets the foreground theme color.
intgetHorizontalAlignment()
void
           Gets or sets the horizontal alignment type of the text in a cell. The value of the property is TextAlignmentType integer constant.
intgetIndentLevel()
void
setIndentLevel(intvalue)
           Represents the m_IndentLevel level for the cell or range. Can only be an integer from 0 to 250.
java.lang.StringgetInvariantCustom()
Gets the culture-independent pattern string for number format. If no number format has been set for this object, null will be returned. If number format is builtin, the pattern string corresponding to the builtin number will be returned.
booleanisDateTime()
Indicates whether the number format is a date format.
booleanisFormulaHidden()
void
setFormulaHidden(booleanvalue)
           Represents if the formula will be hidden when the worksheet is protected.
booleanisGradient()
void
setGradient(booleanvalue)
           Indicates whether the cell shading is a gradient pattern.
booleanisJustifyDistributed()
void
setJustifyDistributed(booleanvalue)
           Indicates if the cells justified or distributed alignment should be used on the last line of text.
booleanisLocked()
void
setLocked(booleanvalue)
           Gets or sets a value indicating whether a cell can be modified or not.
booleanisPercent()
Indicates whether the number format is a percent format.
booleanisTextWrapped()
void
setTextWrapped(booleanvalue)
           Gets or sets a value indicating whether the text within a cell is wrapped.
java.lang.StringgetName()
void
setName(java.lang.Stringvalue)
           Gets or sets the name of the style.
intgetNumber()
void
setNumber(intvalue)
           Gets or sets the display format of numbers and dates. The formatting patterns are different for different regions.
StylegetParentStyle()
Gets the parent style of this style.
intgetPattern()
void
setPattern(intvalue)
           Gets or sets the cell background pattern type. The value of the property is BackgroundType integer constant.
booleangetQuotePrefix()
void
setQuotePrefix(booleanvalue)
           Indicates whether the cell's value starts with single quote mark.
intgetRotation()
void
setRotation(intvalue)
           Represents text rotation angle.
intgetRotationAngle()
void
           Represents text rotation angle.
booleangetShrinkToFit()
void
setShrinkToFit(booleanvalue)
           Represents if text automatically shrinks to fit in the available column width.
intgetTextDirection()
void
           Represents text reading order. The value of the property is TextDirectionType integer constant.
intgetVerticalAlignment()
void
           Gets or sets the vertical alignment type of the text in a cell. The value of the property is TextAlignmentType integer constant.
 
Method Summary
voidcopy(Style style)
Copies data from another style object
booleanequals(java.lang.Object obj)
Determines whether two Style instances are equal.
inthashCode()
Serves as a hash function for a Style object.
booleanisModified(int modifyFlag)
Checks whether the specified properties of the style have been modified. Used for style of ConditionalFormattings to check whether the specified properties of this style should be used when applying the ConditionalFormattings on a cell.
booleansetBorder(int borderEdge, int borderStyle, com.aspose.cells.Color borderColor)
Sets the border of the style.
voidsetCustom(java.lang.String custom, boolean builtinPreference)
Sets the Custom number format string of a cell.
voidsetPatternColor(int pattern, com.aspose.cells.Color color1, com.aspose.cells.Color color2)
Sets the background color.
voidsetTwoColorGradient(com.aspose.cells.Color color1, com.aspose.cells.Color color2, int gradientStyleType, int variant)
Sets the specified fill to a two-color gradient.
voidupdate()
Apply the named style to the styles of the cells which use this named style. It works like clicking the "ok" button after you finished modifying the style. Only applies for named style.
 

    • Constructor Detail

      • Style

        public Style()
        Initializes a new instance of the Style class. NOTE: This constructor is now obsolete. Instead, please use CellsFactory.CreateStyle() method. This property will be removed 6 months later since October 2016. Aspose apologizes for any inconvenience you may have experienced.
    • Property Getters/Setters Detail

      • getBackgroundThemeColor/setBackgroundThemeColor

        public ThemeColor getBackgroundThemeColor() / public void setBackgroundThemeColor(ThemeColor value)
        
        Gets and sets the background theme color. If the background color is not a theme color, NULL will be returned.
      • getForegroundThemeColor/setForegroundThemeColor

        public ThemeColor getForegroundThemeColor() / public void setForegroundThemeColor(ThemeColor value)
        
        Gets and sets the foreground theme color. If the forground color is not a theme color, NULL will be returned.
      • getName/setName

        public java.lang.String getName() / public void setName(java.lang.String value)
        
        Gets or sets the name of the style.
      • getPattern/setPattern

        public int getPattern() / public void setPattern(int value)
        
        Gets or sets the cell background pattern type. The value of the property is BackgroundType integer constant.
      • getBackgroundColor/setBackgroundColor

        public com.aspose.cells.Color getBackgroundColor() / public void setBackgroundColor(com.aspose.cells.Color value)
        
        Gets or sets a style's background color. If you want to set a cell's color, please use Style.ForegroundColor property. Only if the cell style pattern is other than none or solid, this property will take effect.
      • getBackgroundArgbColor/setBackgroundArgbColor

        public int getBackgroundArgbColor() / public void setBackgroundArgbColor(int value)
        
        Gets and sets the background color with a 32-bit ARGB value.
      • getForegroundColor/setForegroundColor

        public com.aspose.cells.Color getForegroundColor() / public void setForegroundColor(com.aspose.cells.Color value)
        
        Gets or sets a style's foreground color. It means no color setting if Color.Empty is returned.
      • getForegroundArgbColor/setForegroundArgbColor

        public int getForegroundArgbColor() / public void setForegroundArgbColor(int value)
        
        Gets and sets the foreground color with a 32-bit ARGB value.
      • getParentStyle

        public Style getParentStyle()
        
        Gets the parent style of this style.
      • getIndentLevel/setIndentLevel

        public int getIndentLevel() / public void setIndentLevel(int value)
        
        Represents the m_IndentLevel level for the cell or range. Can only be an integer from 0 to 250. If text horizontal alignment type is set to value other than left or right, indent level will be reset to zero.
      • getFont

        public Font getFont()
        
        Gets a Font object.
      • getRotationAngle/setRotationAngle

        public int getRotationAngle() / public void setRotationAngle(int value)
        
        Represents text rotation angle.

        0: Not rotated.

        255: Top to Bottom.

        -90: Downward.

        90: Upward.

        You can set 255 or value ranged from -90 to 90.
      • getRotation/setRotation

        public int getRotation() / public void setRotation(int value)
        
        Represents text rotation angle.

        0: Not rotated.

        255: Top to Bottom.

        -90: Downward.

        90: Upward.

        You can set 255 or value ranged from -90 to 90.
        NOTE: This member is now obsolete. Instead, please use Style.RotationAngle property. This property will be removed 12 months later since June 2010. Aspose apologizes for any inconvenience you may have experienced.
      • getVerticalAlignment/setVerticalAlignment

        public int getVerticalAlignment() / public void setVerticalAlignment(int value)
        
        Gets or sets the vertical alignment type of the text in a cell. The value of the property is TextAlignmentType integer constant.
      • getHorizontalAlignment/setHorizontalAlignment

        public int getHorizontalAlignment() / public void setHorizontalAlignment(int value)
        
        Gets or sets the horizontal alignment type of the text in a cell. The value of the property is TextAlignmentType integer constant.
      • isTextWrapped/setTextWrapped

        public boolean isTextWrapped() / public void setTextWrapped(boolean value)
        
        Gets or sets a value indicating whether the text within a cell is wrapped.
      • getNumber/setNumber

        public int getNumber() / public void setNumber(int value)
        
        Gets or sets the display format of numbers and dates. The formatting patterns are different for different regions. For example, the formatting patterns represented by numbers for en_US region:
        ValueTypeFormat String
        0GeneralGeneral
        1Decimal0
        2Decimal0.00
        3Decimal#,##0
        4Decimal#,##0.00
        5Currency$#,##0_);($#,##0)
        6Currency$#,##0_);[Red]($#,##0)
        7Currency$#,##0.00_);($#,##0.00)
        8Currency$#,##0.00_);[Red]($#,##0.00)
        9Percentage0%
        10Percentage0.00%
        11Scientific0.00E+00
        12Fraction# ?/?
        13Fraction# ??/??
        14Datem/d/yyyy
        15Dated-mmm-yy
        16Dated-mmm
        17Datemmm-yy
        18Timeh:mm AM/PM
        19Timeh:mm:ss AM/PM
        20Timeh:mm
        21Timeh:mm:ss
        22Timem/d/yyyy h:mm
        37Accounting#,##0_);(#,##0)
        38Accounting#,##0_);[Red](#,##0)
        39Accounting#,##0.00_);(#,##0.00)
        40Accounting#,##0.00_);[Red](#,##0.00)
        41Accounting_(* #,##0_);_(* (#,##0);_(* "-"_);_(@_)
        42Currency_($* #,##0_);_($* (#,##0);_($* "-"_);_(@_)
        43Accounting_(* #,##0.00_);_(* (#,##0.00);_(* "-"??_);_(@_)
        44Currency_($* #,##0.00_);_($* (#,##0.00);_($* "-"??_);_(@_)
        45Timemm:ss
        46Time[h]:mm:ss
        47Timemm:ss.0
        48Scientific##0.0E+0
        49Text@
      • isLocked/setLocked

        public boolean isLocked() / public void setLocked(boolean value)
        
        Gets or sets a value indicating whether a cell can be modified or not. Locking cells has no effect unless the worksheet is protected.
      • getCustom/setCustom

        public java.lang.String getCustom() / public void setCustom(java.lang.String value)
        
        Represents the custom number format string of this style object. If the custom number format is not set(For example, the number format is builtin), "" will be returned. The returned custom string is culture-independent.
      • getCultureCustom/setCultureCustom

        public java.lang.String getCultureCustom() / public void setCultureCustom(java.lang.String value)
        
        Gets and sets the culture-dependent pattern string for number format. If no number format has been set for this object, null will be returned. If number format is builtin, the pattern string corresponding to the builtin number will be returned. For builtin number format, both the pattern content(such as, one builtin date format is "m/d/y" for some locales, but for some other locales it becomes "d/m/y") and the format specifier(such as, some locales is using character other than 'y' to represent the year part for date formatting) are culture-dependent; For user specified custom format, only format specifiers are changed according to the culture, other parts of the formatting pattern will not be modified.
      • getInvariantCustom

        public java.lang.String getInvariantCustom()
        
        Gets the culture-independent pattern string for number format. If no number format has been set for this object, null will be returned. If number format is builtin, the pattern string corresponding to the builtin number will be returned. For builtin number formats, the returned pattern content is still culture-dependent, such as, for some locales it returns "m/d/y" and for some other locales it returns "d/m/y". The diffrence from CultureCustom is(that is also what culture-independent means): the format specifiers are kept as standard, such as "y" will always be used as the "year" part no matter what other special character is used for the specific locale.
      • isFormulaHidden/setFormulaHidden

        public boolean isFormulaHidden() / public void setFormulaHidden(boolean value)
        
        Represents if the formula will be hidden when the worksheet is protected.
      • getShrinkToFit/setShrinkToFit

        public boolean getShrinkToFit() / public void setShrinkToFit(boolean value)
        
        Represents if text automatically shrinks to fit in the available column width.
      • getTextDirection/setTextDirection

        public int getTextDirection() / public void setTextDirection(int value)
        
        Represents text reading order. The value of the property is TextDirectionType integer constant.
      • isJustifyDistributed/setJustifyDistributed

        public boolean isJustifyDistributed() / public void setJustifyDistributed(boolean value)
        
        Indicates if the cells justified or distributed alignment should be used on the last line of text. This is typical for East Asian alignments but not typical in other contexts.
      • getQuotePrefix/setQuotePrefix

        public boolean getQuotePrefix() / public void setQuotePrefix(boolean value)
        
        Indicates whether the cell's value starts with single quote mark.
      • isGradient/setGradient

        public boolean isGradient() / public void setGradient(boolean value)
        
        Indicates whether the cell shading is a gradient pattern.
      • isPercent

        public boolean isPercent()
        
        Indicates whether the number format is a percent format.
      • isDateTime

        public boolean isDateTime()
        
        Indicates whether the number format is a date format.

    setBackgroundThemeColor

    public voidsetBackgroundThemeColor(ThemeColor value)
    
    Gets and sets the background theme color. If the background color is not a theme color, NULL will be returned.

    setForegroundThemeColor

    public voidsetForegroundThemeColor(ThemeColor value)
    
    Gets and sets the foreground theme color. If the forground color is not a theme color, NULL will be returned.

    setName

    public voidsetName(java.lang.Stringvalue)
    
    Gets or sets the name of the style.

    setPattern

    public voidsetPattern(intvalue)
    
    Gets or sets the cell background pattern type. The value of the property is BackgroundType integer constant.

    setBackgroundColor

    public voidsetBackgroundColor(com.aspose.cells.Colorvalue)
    
    Gets or sets a style's background color. If you want to set a cell's color, please use Style.ForegroundColor property. Only if the cell style pattern is other than none or solid, this property will take effect.

    setBackgroundArgbColor

    public voidsetBackgroundArgbColor(intvalue)
    
    Gets and sets the background color with a 32-bit ARGB value.

    setForegroundColor

    public voidsetForegroundColor(com.aspose.cells.Colorvalue)
    
    Gets or sets a style's foreground color. It means no color setting if Color.Empty is returned.

    setForegroundArgbColor

    public voidsetForegroundArgbColor(intvalue)
    
    Gets and sets the foreground color with a 32-bit ARGB value.

    setIndentLevel

    public voidsetIndentLevel(intvalue)
    
    Represents the m_IndentLevel level for the cell or range. Can only be an integer from 0 to 250. If text horizontal alignment type is set to value other than left or right, indent level will be reset to zero.

    setRotationAngle

    public voidsetRotationAngle(intvalue)
    
    Represents text rotation angle.

    0: Not rotated.

    255: Top to Bottom.

    -90: Downward.

    90: Upward.

    You can set 255 or value ranged from -90 to 90.

    setRotation

    public voidsetRotation(intvalue)
    
    Represents text rotation angle.

    0: Not rotated.

    255: Top to Bottom.

    -90: Downward.

    90: Upward.

    You can set 255 or value ranged from -90 to 90.
    NOTE: This member is now obsolete. Instead, please use Style.RotationAngle property. This property will be removed 12 months later since June 2010. Aspose apologizes for any inconvenience you may have experienced.

    setVerticalAlignment

    public voidsetVerticalAlignment(intvalue)
    
    Gets or sets the vertical alignment type of the text in a cell. The value of the property is TextAlignmentType integer constant.

    setHorizontalAlignment

    public voidsetHorizontalAlignment(intvalue)
    
    Gets or sets the horizontal alignment type of the text in a cell. The value of the property is TextAlignmentType integer constant.

    setTextWrapped

    public voidsetTextWrapped(booleanvalue)
    
    Gets or sets a value indicating whether the text within a cell is wrapped.

    setNumber

    public voidsetNumber(intvalue)
    
    Gets or sets the display format of numbers and dates. The formatting patterns are different for different regions. For example, the formatting patterns represented by numbers for en_US region:
    Value
    Type
    Format String
    0
    General
    General
    1
    Decimal
    0
    2
    Decimal
    0.00
    3
    Decimal
    #,##0
    4
    Decimal
    #,##0.00
    5
    Currency
    $#,##0_);($#,##0)
    6
    Currency
    $#,##0_);[Red]($#,##0)
    7
    Currency
    $#,##0.00_);($#,##0.00)
    8
    Currency
    $#,##0.00_);[Red]($#,##0.00)
    9
    Percentage
    0%
    10
    Percentage
    0.00%
    11
    Scientific
    0.00E+00
    12
    Fraction
    # ?/?
    13
    Fraction
    # ??/??
    14
    Date
    m/d/yyyy
    15
    Date
    d-mmm-yy
    16
    Date
    d-mmm
    17
    Date
    mmm-yy
    18
    Time
    h:mm AM/PM
    19
    Time
    h:mm:ss AM/PM
    20
    Time
    h:mm
    21
    Time
    h:mm:ss
    22
    Time
    m/d/yyyy h:mm
    37
    Accounting
    #,##0_);(#,##0)
    38
    Accounting
    #,##0_);[Red](#,##0)
    39
    Accounting
    #,##0.00_);(#,##0.00)
    40
    Accounting
    #,##0.00_);[Red](#,##0.00)
    41
    Accounting
    _(* #,##0_);_(* (#,##0);_(* "-"_);_(@_)
    42
    Currency
    _($* #,##0_);_($* (#,##0);_($* "-"_);_(@_)
    43
    Accounting
    _(* #,##0.00_);_(* (#,##0.00);_(* "-"??_);_(@_)
    44
    Currency
    _($* #,##0.00_);_($* (#,##0.00);_($* "-"??_);_(@_)
    45
    Time
    mm:ss
    46
    Time
    [h]:mm:ss
    47
    Time
    mm:ss.0
    48
    Scientific
    ##0.0E+0
    49
    Text
    @

    setLocked

    public voidsetLocked(booleanvalue)
    
    Gets or sets a value indicating whether a cell can be modified or not. Locking cells has no effect unless the worksheet is protected.

    setCustom

    public voidsetCustom(java.lang.Stringvalue)
    
    Represents the custom number format string of this style object. If the custom number format is not set(For example, the number format is builtin), "" will be returned. The returned custom string is culture-independent.

    setCultureCustom

    public voidsetCultureCustom(java.lang.Stringvalue)
    
    Gets and sets the culture-dependent pattern string for number format. If no number format has been set for this object, null will be returned. If number format is builtin, the pattern string corresponding to the builtin number will be returned. For builtin number format, both the pattern content(such as, one builtin date format is "m/d/y" for some locales, but for some other locales it becomes "d/m/y") and the format specifier(such as, some locales is using character other than 'y' to represent the year part for date formatting) are culture-dependent; For user specified custom format, only format specifiers are changed according to the culture, other parts of the formatting pattern will not be modified.

    setFormulaHidden

    public voidsetFormulaHidden(booleanvalue)
    
    Represents if the formula will be hidden when the worksheet is protected.

    setShrinkToFit

    public voidsetShrinkToFit(booleanvalue)
    
    Represents if text automatically shrinks to fit in the available column width.

    setTextDirection

    public voidsetTextDirection(intvalue)
    
    Represents text reading order. The value of the property is TextDirectionType integer constant.

    setJustifyDistributed

    public voidsetJustifyDistributed(booleanvalue)
    
    Indicates if the cells justified or distributed alignment should be used on the last line of text. This is typical for East Asian alignments but not typical in other contexts.

    setQuotePrefix

    public voidsetQuotePrefix(booleanvalue)
    
    Indicates whether the cell's value starts with single quote mark.

    setGradient

    public voidsetGradient(booleanvalue)
    
    Indicates whether the cell shading is a gradient pattern.
    • Method Detail

      • setTwoColorGradient

        public void setTwoColorGradient(com.aspose.cells.Color color1, com.aspose.cells.Color color2, int gradientStyleType, int variant)
        Sets the specified fill to a two-color gradient.
        Parameters:
        color1 - One gradient color.
        color2 - Two gradient color.
        gradientStyleType - A GradientStyleType value. Gradient shading style.
        variant - The gradient variant. Can be a value from 1 through 4, corresponding to one of the four variants on the Gradient tab in the Fill Effects dialog box. If style is GradientStyle.FromCenter, the Variant argument can only be 1 or 2.
      • setPatternColor

        public void setPatternColor(int pattern, com.aspose.cells.Color color1, com.aspose.cells.Color color2)
        Sets the background color.
        Parameters:
        pattern - A BackgroundType value. The pattern.
        color1 - The forground color.
        color2 - The background color. Only works when pattern is not BackgroundType.None and BackgroundType.Solid.
      • copy

        public void copy(Style style)
        Copies data from another style object This method does not copy the name of the style. If you want to copy the name, please call the following codes after copying style: destStyle.Name = style.Name.
        Parameters:
        style - Source Style object
      • update

        public void update()
        Apply the named style to the styles of the cells which use this named style. It works like clicking the "ok" button after you finished modifying the style. Only applies for named style.
      • isModified

        public boolean isModified(int modifyFlag)
        Checks whether the specified properties of the style have been modified. Used for style of ConditionalFormattings to check whether the specified properties of this style should be used when applying the ConditionalFormattings on a cell.
        Parameters:
        modifyFlag - A StyleModifyFlag value. Style modified flags
        Returns:
        true if the specified properties have been modified
      • equals

        public boolean equals(java.lang.Object obj)
        Determines whether two Style instances are equal.
        Parameters:
        obj - The Style object to compare with the current Style object.
        Returns:
        true if the specified Object is equal to the current Object; otherwise, false.
      • hashCode

        public int hashCode()
        Serves as a hash function for a Style object. This method is only for internal use.
        Returns:
        A hash code for the current Object.
      • setBorder

        public boolean setBorder(int borderEdge, int borderStyle, com.aspose.cells.Color borderColor)
        Sets the border of the style.
        Parameters:
        borderEdge - A BorderType value.
        borderStyle - A CellBorderType value.
        borderColor -
        Returns:
      • setCustom

        public void setCustom(java.lang.String custom, boolean builtinPreference)
        Sets the Custom number format string of a cell.
        Parameters:
        custom - _Custom number format string, should be InvariantCulture pattern.
        builtinPreference - If given Custom number format string matches one of the built-in number formats corresponding to current regional settings, whether set the number format as built-in instead of _Custom.