PageTableAreaCell constructor

Contents
[ ]

init

Initializes a new instance of the PageTableAreaCell class.

def __init__(self, row_index, column_index, page_area):
    ...
Parameter Type Description
row_index int The zero-based index of the row.
column_index int The zero-based index of the column.
page_area groupdocs.parser.data.PageArea The value of the table cell.

init

Initializes a new instance of the PageTableAreaCell class.

def __init__(self, row_index, column_index, page_area, row_span, column_span):
    ...
Parameter Type Description
row_index int The zero-based index of the row.
column_index int The zero-based index of the column.
page_area groupdocs.parser.data.PageArea The value of the table cell.
row_span int The total number of rows that contain the table cell.
column_span int The total number of columns that contain the table cell.

See Also