text_options property

text_options property

Represents the text options of the shape.

Example

from aspose.pydrawing import Color

opt = shape.text_options
opt.color = Color.blue
opt.size = 8

Definition:

@property
def text_options(self):
    ...
@text_options.setter
def text_options(self, value):
    ...

See Also