java.lang.Objectcom.aspose.cells.GradientFill
public class GradientFill
Property Getters/Setters Summary | ||
---|---|---|
int | getAngle() | |
void | setAngle(int value) | |
The angle of linear fill. | ||
int | getDirectionType() | |
Gets the gradient direction type. The value of the property is GradientDirectionType integer constant. | ||
int | getFillType() | |
Gets the gradient fill type. The value of the property is GradientFillType integer constant. | ||
com.aspose.cells.Color | getGradientColor1() | |
Gets gradient color 1. Applies to Excel97-2003 | ||
com.aspose.cells.Color | getGradientColor2() | |
Gets gradient color 2. Applies to Excel97-2003 | ||
int | getGradientColorType() | |
Gets gradient color type. Applies to Excel97-2003 The value of the property is GradientColorType integer constant. | ||
double | getGradientDegree() | |
Gets gradient degree. Applies to Excel97-2003 | ||
GradientStopCollection | getGradientStops() | |
Represents the gradient stop collection. | ||
int | getGradientStyle() | |
Gets gradint style type. Applies to Excel97-2003 The value of the property is GradientStyleType integer constant. | ||
int | getPresetColor() | |
void | setPresetColor(int value) | |
Returns the gradient preset color for the the specified fill. Applies to Excel97-2003 The value of the property is GradientPresetType integer constant. | ||
int | getVariant() | |
Gets variant. Applies to Excel97-2003 |
Method Summary | ||
---|---|---|
void | setGradient(int type, double angle, int direction) | |
Set the gradient fill type and direction. | ||
void | setOneColorGradient(com.aspose.cells.Color color, double degree, int style, int variant) | |
Sets the specified fill to a one-color gradient. Only applies for Excel97-2003 | ||
void | setPresetColorGradient(int presetColor, int style, int variant) | |
Sets the specified fill to a preset-color gradient. Only applies for Excel 97-2003 | ||
void | setTwoColorGradient(com.aspose.cells.Color color1, com.aspose.cells.Color color2, int style, int variant) | |
Sets the specified fill to a two-color gradient. Only applies for Excel97-2003 |
Property Getters/Setters Detail |
---|
getGradientStops | |
public GradientStopCollection getGradientStops() |
getFillType | |
public int getFillType() |
getDirectionType | |
public int getDirectionType() |
getAngle/setAngle | |
public int getAngle() / public void setAngle(int value) |
getGradientColor1 | |
public com.aspose.cells.Color getGradientColor1() |
getGradientColor2 | |
public com.aspose.cells.Color getGradientColor2() |
getGradientDegree | |
public double getGradientDegree() |
getGradientColorType | |
public int getGradientColorType() |
getPresetColor/setPresetColor | |
public int getPresetColor() / public void setPresetColor(int value) |
getVariant | |
public int getVariant() |
getGradientStyle | |
public int getGradientStyle() |
Method Detail |
---|
setGradient | |
public void setGradient(int type, double angle, int direction) |
type
- A angle
- The angle. Only applies for GradientFillType.Linear. direction
- A setPresetColorGradient | |
public void setPresetColorGradient(int presetColor, int style, int variant) |
presetColor
- A style
- A 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.setOneColorGradient | |
public void setOneColorGradient(com.aspose.cells.Color color, double degree, int style, int variant) |
color
- One gradient color.degree
- The gradient degree. Can be a value from 0.0 (dark) through 1.0 (light).style
- A 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.setTwoColorGradient | |
public void setTwoColorGradient(com.aspose.cells.Color color1, com.aspose.cells.Color color2, int style, int variant) |
color1
- One gradient color.color2
- Two gradient color.style
- A 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.