Package com.grapecity.documents.excel
Interface IBorder
public interface IBorder
Represents the border of an object.
-
Method Summary
Modifier and TypeMethodDescriptionvoidclear()Clear the border.getColor()Gets theColorof this border.intGets the color of the border.Gets the line style for the border.Gets theThemeColorin the applied color scheme that is associatedwith the specified object.doubleGets a value that lightens or darkens a color.voidSets theColorof this border.voidsetColorIndex(int value) Sets the color of the border.voidsetLineStyle(BorderLineStyle value) Sets the line style for the border.voidsetThemeColor(ThemeColor value) Sets theThemeColorin the applied color scheme that is associatedwith the specified object.voidsetTintAndShade(double value) Sets a value that lightens or darkens a color.
-
Method Details
-
getColor
Color getColor()Gets theColorof this border. -
setColor
Sets theColorof this border. -
getColorIndex
int getColorIndex()Gets the color of the border. -
setColorIndex
void setColorIndex(int value) Sets the color of the border. -
getThemeColor
ThemeColor getThemeColor()Gets theThemeColorin the applied color scheme that is associatedwith the specified object. -
setThemeColor
Sets theThemeColorin the applied color scheme that is associatedwith the specified object. -
getTintAndShade
double getTintAndShade()Gets a value that lightens or darkens a color. The valid number is from -1 (darkest) to 1 (lightest). Zero (0) is neutral. -
setTintAndShade
void setTintAndShade(double value) Sets a value that lightens or darkens a color. The valid number is from -1 (darkest) to 1 (lightest). Zero (0) is neutral. -
getLineStyle
BorderLineStyle getLineStyle()Gets the line style for the border. -
setLineStyle
Sets the line style for the border. -
clear
void clear()Clear the border.
-