java.lang.Object
com.aspose.cells.MsoFillFormat
public class MsoFillFormat
| Property Getters/Setters Summary | ||
|---|---|---|
Color | getBackColor() | |
void | setBackColor(Color value) | |
| Gets and sets the file back color. | ||
Color | getForeColor() | |
void | setForeColor(Color value) | |
| Gets and sets the fill fore color. | ||
byte[] | getImageData() | |
void | setImageData(byte[] value) | |
| Gets and sets the Texture and Picture fill data. | ||
boolean | isVisible() | |
void | setVisible(boolean value) | |
| Indicats whether there is fill. | ||
int | getTexture() | |
| Gets the texture fill type. The value of the property is TextureType integer constant. | ||
double | getTransparency() | |
void | setTransparency(double value) | |
| Returns or sets the degree of transparency of the specified fill as a value from 0.0 (opaque) through 1.0 (clear). | ||
| Method Summary | ||
|---|---|---|
void | setOneColorGradient(Color color, double degree, int style, int variant) | |
| Sets the specified fill to a one-color gradient. | ||
| Property Getters/Setters Detail |
|---|
getForeColor/setForeColor | |
public Color getForeColor() / public void setForeColor(Color value) | |
getTransparency/setTransparency | |
public double getTransparency() / public void setTransparency(double value) | |
getBackColor/setBackColor | |
public Color getBackColor() / public void setBackColor(Color value) | |
getImageData/setImageData | |
public byte[] getImageData() / public void setImageData(byte[] value) | |
getTexture | |
public int getTexture() | |
isVisible/setVisible | |
public boolean isVisible() / public void setVisible(boolean value) | |
| Method Detail |
|---|
setOneColorGradient | |
public void setOneColorGradient(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.