start_row method

start_row

Starts to save data of one row.

def start_row(self, row):
    ...
ParameterTypeDescription
rowRowRow object for implementation to fill data. Its row index is the returned value of latest call of LightCellsDataProvider.next_row.
If the row has been initialized in the inner cells model, the existing row object will be used.
Otherwise a temporary Row object will be used for implementation to fill data.

Remarks

It will be called at the beginning of saving a row and its cells data. If current row has some custom properties such as height, style, …etc., implementation should set those properties to given Row object here.

See Also