Aspose::Cells::Drawing::Shape::GetTextOptions method

Shape::GetTextOptions method

Represents the text options of the shape.

TextOptions Aspose::Cells::Drawing::Shape::GetTextOptions()

Examples

TextOptions opt = shape.GetTextOptions();
opt.SetColor(Color{ 0xff, 0, 0, 0xff });
opt.SetSize(8);
shape.SetTextOptions(opt);

See Also