text property

text property

Represents the string in this TextBox object.

Example


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

Definition:

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

See Also