GroupShapeLock

Overview

GroupShapeLock is a class in Aspose.Slides FOSS for Python. Inherits from: BaseShapeLock, IGroupShapeLock.

Determines which operations are disabled on the parent GroupShape.

This class provides 10 methods for working with GroupShapeLock objects in Python programs. Available methods include: __init__, as_i_base_shape_lock, aspect_ratio_locked, grouping_locked, no_locks, position_locked, rotation_locked, select_locked, size_locked, ungrouping_locked. All public members are accessible to any Python application after installing the Aspose.Slides FOSS for Python package. Properties: as_i_base_shape_lock, aspect_ratio_locked, grouping_locked, no_locks, position_locked, rotation_locked, and 3 more.

Properties

NameTypeAccessDescription
grouping_lockedboolRead/WriteDetermines whether adding this shape to a group is forbidden.
ungrouping_lockedboolRead/WriteDetermines whether splitting this groupshape is forbidden.
select_lockedboolRead/WriteDetermines whether selecting this shape is forbidden.
rotation_lockedboolRead/WriteDetermines whether changing rotation angle of this shape is forbidden.
aspect_ratio_lockedboolRead/WriteDetermines whether shape have to preserve aspect ratio on resizing.
position_lockedboolRead/WriteDetermines whether moving this shape is forbidden.
size_lockedboolRead/WriteDetermines whether resizing this shape is forbidden.
no_locksboolReadReturn true if all lock-flags are disabled.
as_i_base_shape_lockIBaseShapeLockReadAllows to get base IBaseShapeLock interface.

Methods

SignatureDescription
__init__()
grouping_locked()boolDetermines whether adding this shape to a group is forbidden.
ungrouping_locked()boolDetermines whether splitting this groupshape is forbidden.
select_locked()boolDetermines whether selecting this shape is forbidden.
rotation_locked()boolDetermines whether changing rotation angle of this shape is forbidden.
aspect_ratio_locked()boolDetermines whether shape have to preserve aspect ratio on resizing.
position_locked()boolDetermines whether moving this shape is forbidden.
size_locked()boolDetermines whether resizing this shape is forbidden.
as_i_base_shape_lock()IBaseShapeLockAllows to get base IBaseShapeLock interface.
no_locks()boolReturn true if all lock-flags are disabled.

See Also