LightCellsDataProvider.StartRow

LightCellsDataProvider.StartRow method

Starts to save data of one row.

public void StartRow(Row row)
ParameterTypeDescription
rowRowRow object for implementation to fill data. Its row index is the returned value of latest call of NextRow. 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