text property

text property

Gets and sets the text of this shape.

Example


if shape.text == None:
    shape.text = "This is a test."

Definition:

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

See Also