put_cell_value method

put_cell_value

Put the value to the cell.

def put_cell_value(self, row_offset, column_offset, value):
    ...
ParameterTypeDescription
row_offsetintThe row offset in the table.
column_offsetintThe column offset in the table.
valueanyThe cell value.

put_cell_value

Put the value to the cell.

def put_cell_value(self, row_offset, column_offset, value, is_totals_row_label):
    ...
ParameterTypeDescription
row_offsetintThe row offset in the table.
column_offsetintThe column offset in the table.
valueanyThe cell value.
is_totals_row_labelboolIndicates whether it is a label for total row,only works for total row.
If False and this row is total row, a new row will be inserted.

See Also