auto_shape_type property

auto_shape_type property

Gets and sets the auto shape type.

Example

from aspose.cells.drawing import AutoShapeType

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

Definition:

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

See Also