text_shape_type property

text_shape_type property

Gets and sets the preset text shape type.

Example

from aspose.cells.drawing import AutoShapeType

if shape.text_shape_type == AutoShapeType.UNKNOWN:
    shape.text_shape_type = AutoShapeType.RECTANGLE

Definition:

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

See Also