com.aspose.cells.TextEffectFormat.html Maven / Gradle / Ivy
TextEffectFormat
com.aspose.cells
Class TextEffectFormat
java.lang.Object
com.aspose.cells.TextEffectFormat
public class TextEffectFormat
- extends java.lang.Object
Example:
//Instantiating a Workbook object
Workbook workbook = new Workbook();
ShapeCollection shapes = workbook.getWorksheets().get(0).getShapes();
shapes.addTextEffect(MsoPresetTextEffect.TEXT_EFFECT_1, "Aspose", "Arial", 30, false, false, 0, 0, 0, 0, 100, 200);
TextEffectFormat textEffectFormat = shapes.get(0).getTextEffect();
textEffectFormat.setTextEffect(MsoPresetTextEffect.TEXT_EFFECT_10);
Property Getters/Setters Summary | ||
---|---|---|
boolean | getFontBold() | |
void | setFontBold(boolean) | |
Indicates whether font is bold. | ||
boolean | getFontItalic() | |
void | setFontItalic(boolean) | |
Indicates whether font is italic. | ||
java.lang.String | getFontName() | |
void | setFontName(java.lang.String) | |
The name of the font used in the WordArt. | ||
int | getFontSize() | |
void | setFontSize(int) | |
The size (in points) of the font used in the WordArt. | ||
int | getPresetShape() | |
void | setPresetShape(int) | |
Gets and sets the preset shape type. The value of the property is MsoPresetTextEffectShape integer constant. | ||
boolean | getRotatedChars() | |
void | setRotatedChars(boolean) | |
If true,characters in the specified WordArt are rotated 90 degrees relative to the WordArt's bounding shape. | ||
java.lang.String | getText() | |
void | setText(java.lang.String) | |
The text in the WordArt. |
Method Summary | ||
---|---|---|
void | setTextEffect(int effect) | |
Sets the preset text effect. |
Property Getters/Setters Detail |
---|
getText/setText | |
public java.lang.String getText() / public void setText(java.lang.String value) |
The text in the WordArt.
getFontName/setFontName | |
public java.lang.String getFontName() / public void setFontName(java.lang.String value) |
The name of the font used in the WordArt.
getFontBold/setFontBold | |
public boolean getFontBold() / public void setFontBold(boolean value) |
Indicates whether font is bold.
getFontItalic/setFontItalic | |
public boolean getFontItalic() / public void setFontItalic(boolean value) |
Indicates whether font is italic.
getRotatedChars/setRotatedChars | |
public boolean getRotatedChars() / public void setRotatedChars(boolean value) |
If true,characters in the specified WordArt are rotated 90 degrees relative to the WordArt's bounding shape.
getFontSize/setFontSize | |
public int getFontSize() / public void setFontSize(int value) |
The size (in points) of the font used in the WordArt.
getPresetShape/setPresetShape | |
public int getPresetShape() / public void setPresetShape(int value) |
Gets and sets the preset shape type. The value of the property is MsoPresetTextEffectShape integer constant.
Method Detail |
---|
setTextEffect | |
public void setTextEffect(int effect) |
Sets the preset text effect. - Parameters:
effect
- AMsoPresetTextEffect value. The preset text effect.
See Also:
Aspose.Cells Documentation - the home page for the Aspose.Cells Product Documentation.
Aspose.Cells Support Forum - our preferred method of support.