TextEffectFormat
Contenido
[
Ocultar
]TextEffectFormat class
Contiene propiedades y métodos que se aplican a los objetos de WordArt.
public class TextEffectFormat
Propiedades
Nombre | Descripción |
---|---|
FontBold { get; set; } | Indica si la fuente está en negrita. |
FontItalic { get; set; } | Indica si la fuente está en cursiva. |
FontName { get; set; } | El nombre de la fuente utilizada en WordArt. |
FontSize { get; set; } | El tamaño (en puntos) de la fuente utilizada en el WordArt. |
PresetShape { get; set; } | Obtiene y establece el tipo de forma preestablecido. |
RotatedChars { get; set; } | Si es verdadero, los caracteres en el WordArt especificado se giran 90 grados con respecto a la forma delimitada de WordArt. |
Text { get; set; } | El texto en el WordArt. |
Métodos
Nombre | Descripción |
---|---|
SetTextEffect(MsoPresetTextEffect) | Establece el efecto de texto predeterminado. |
Ejemplos
[C#]
// Instanciando un objeto Workbook
Workbook workbook = new Workbook();
Aspose.Cells.Drawing.ShapeCollection shapes = workbook.Worksheets[0].Shapes;
shapes.AddTextEffect(MsoPresetTextEffect.TextEffect1, "Aspose", "Arial", 30, false, false, 0, 0, 0, 0, 100, 200);
TextEffectFormat textEffectFormat = shapes[0].TextEffect;
textEffectFormat.SetTextEffect(MsoPresetTextEffect.TextEffect10);
workbook.Save("Book1.xls");
[Visual Basic]
'Crear una instancia de un objeto Workbook
Dim workbook As Workbook = New Workbook()
Dim shapes As Aspose.Cells.Drawing.ShapeCollection = workbook.Worksheets(0).Shapes
shapes.AddTextEffect(MsoPresetTextEffect.TextEffect1, "Aspose", "Arial", 30, false, false, 0, 0, 0, 0, 100, 200)
Dim textEffectFormat As TextEffectFormat = shapes(0).TextEffect
TextEffectFormat.SetTextEffect(MsoPresetTextEffect.TextEffect10)
workbook.Save("Book1.xls")
Ver también
- espacio de nombres Aspose.Cells.Drawing
- asamblea Aspose.Cells