Shape.TextOptions

Shape.TextOptions property

Represents the text options of the shape.

public TextOptions TextOptions { get; set; }

Examples


[C#]
Aspose.Cells.Drawing.Texts.TextOptions opt = shape.TextOptions;
opt.Color = Color.Blue;
opt.Size = 8;

See Also