TextEffectFormat

TextEffectFormat class

Contiene proprietà e metodi che si applicano agli oggetti WordArt.

public class TextEffectFormat

Proprietà

NomeDescrizione
FontBold { get; set; }Indica se il carattere è in grassetto.
FontItalic { get; set; }Indica se il carattere è in corsivo.
FontName { get; set; }Il nome del font utilizzato nella WordArt.
FontSize { get; set; }La dimensione (in punti) del carattere utilizzato nella WordArt.
PresetShape { get; set; }Ottiene e imposta il tipo di forma preimpostato.
RotatedChars { get; set; }Se true, i caratteri nella WordArt specificata vengono ruotati di 90 gradi rispetto alla forma di delimitazione della WordArt.
Text { get; set; }Il testo nella WordArt.

Metodi

NomeDescrizione
SetTextEffect(MsoPresetTextEffect)Imposta l’effetto testo preimpostato.

Esempi


[C#]

//Creazione di un'istanza di un oggetto cartella di lavoro
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]

'Creazione di un'istanza di un oggetto 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")

Guarda anche