move_to_range method
move_to_range(self, top_row, left_column, bottom_row, right_column)
Moves the shape to a specified range.
def move_to_range(self, top_row, left_column, bottom_row, right_column):
...
| Parameter | Type | Description |
|---|---|---|
| top_row | int | Upper left row index. |
| left_column | int | Upper left column index. |
| bottom_row | int | Lower right row index |
| right_column | int | Lower right column index |
Example
shape.move_to_range(12, 3, 13, 5)
See Also
- module
aspose.cells.drawing - class
TextBox