java.lang.Object
com.aspose.cells.TextEffectFormat
public class TextEffectFormat
- extends java.lang.Object
Contains properties and methods that apply to WordArt objects.
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);
workbook.save("C:\\Book1.xls");
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.
setTextEffect | |
public void setTextEffect(int effect) |
-
Sets the preset text effect.
- Parameters:
effect
- A MsoPresetTextEffect 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.