add method

Contents
[ ]

add

Adds a ListObject to the worksheet.

Returns

The index of the new ListObject

def add(self, start_cell, end_cell, has_headers):
    ...
ParameterTypeDescription
start_cellstrThe start cell of the list range.
end_cellstrThe end cell of the list range.
has_headersboolWhether the range has headers.

add

Adds a ListObject to the worksheet.

Returns

The index of the new ListObject

def add(self, start_row, start_column, end_row, end_column, has_headers):
    ...
ParameterTypeDescription
start_rowintThe start row of the list range.
start_columnintThe start row of the list range.
end_rowintThe start row of the list range.
end_columnintThe start row of the list range.
has_headersboolWhether the range has headers.

See Also