horizontal_anchor property
Table.horizontal_anchor property
Gets the base object from which the horizontal positioning of floating table should be calculated. Default value is RelativeHorizontalPosition.COLUMN.
@property
def horizontal_anchor(self) -> aspose.words.drawing.RelativeHorizontalPosition:
...
@horizontal_anchor.setter
def horizontal_anchor(self, value: aspose.words.drawing.RelativeHorizontalPosition):
...
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.tables
- class Table