Package com.grapecity.documents.excel
Interface IColorStop
public interface IColorStop
Represents the color stop point for a gradient fill in a range or selection.
-
Method Summary
Modifier and TypeMethodDescriptionvoiddelete()Deletes the represented object.getColor()Gets theColorof the representedIColorStop.doubleGets the position of theIColorStop.Gets the theme color of the represented object.doubleGets the tint and shade of the represented object.voidSets theColorof the representedIColorStop.voidsetPosition(double value) Sets the position of theIColorStop.voidsetThemeColor(ThemeColor value) Sets the theme color of the represented object.voidsetTintAndShade(double value) Sets the tint and shade of the represented object.
-
Method Details
-
getColor
Color getColor()Gets theColorof the representedIColorStop. -
setColor
Sets theColorof the representedIColorStop. -
getPosition
double getPosition()Gets the position of theIColorStop. -
setPosition
void setPosition(double value) Sets the position of theIColorStop. -
getThemeColor
ThemeColor getThemeColor()Gets the theme color of the represented object. -
setThemeColor
Sets the theme color of the represented object. -
getTintAndShade
double getTintAndShade()Gets the tint and shade of the represented object. The valid number is from -1 (darkest) to 1 (lightest). Zero (0) is neutral. -
setTintAndShade
void setTintAndShade(double value) Sets the tint and shade of the represented object. The valid number is from -1 (darkest) to 1 (lightest). Zero (0) is neutral. -
delete
void delete()Deletes the represented object.
-