The X coordinate of the lowest left point on the drawing where the tile begins.
start_point_y
int
The Y coordinate of the lowest left point on the drawing where the tile begins.
width
int
The width of the tile in pixels.
height
int
The height of the tile in pixels.
Example
fromgroupdocs.viewer.optionsimportTile# Define tile parametersstart_x=0start_y=0tile_width=500tile_height=400# Create a tile representing a portion of the drawingtile=Tile(start_x,start_y,tile_width,tile_height)