allow_overlap property
ShapeBase.allow_overlap property
Gets or sets a value that specifies whether this shape can overlap other shapes.
@property
def allow_overlap(self) -> bool:
...
@allow_overlap.setter
def allow_overlap(self, value: bool):
...
Remarks
This property affects behavior of the shape in Microsoft Word. Aspose.Words ignores the value of this property.
This property is applicable only to top level shapes.
The default value is True
.
Examples
Shows how to work with floating tables properties.
doc = aw.Document(file_name=MY_DIR + 'Table wrapped by text.docx')
table = doc.first_section.body.tables[0]
if table.text_wrapping == aw.tables.TextWrapping.AROUND:
self.assertEqual(aw.drawing.RelativeHorizontalPosition.MARGIN, table.horizontal_anchor)
self.assertEqual(aw.drawing.RelativeVerticalPosition.PARAGRAPH, table.vertical_anchor)
self.assertEqual(False, table.allow_overlap)
# Only Margin, Page, Column available in RelativeHorizontalPosition for HorizontalAnchor setter.
# The ArgumentException will be thrown for any other values.
table.horizontal_anchor = aw.drawing.RelativeHorizontalPosition.COLUMN
# Only Margin, Page, Paragraph available in RelativeVerticalPosition for VerticalAnchor setter.
# The ArgumentException will be thrown for any other values.
table.vertical_anchor = aw.drawing.RelativeVerticalPosition.PAGE
See Also
- module aspose.words.drawing
- class ShapeBase