WebCells.SetStyle

SetStyle(int, int, int, int, TableItemStyle)

Sets the style to a specified range of cells.

public void SetStyle(int firstRow, int firstColumn, int rowNumber, int columnNumber, 
    TableItemStyle style)
ParameterTypeDescription
firstRowInt32First row of this range(zero based)
firstColumnInt32First column of this range(zero based)
rowNumberInt32Number of rows(one based)
columnNumberInt32Number of columns(one based)
styleTableItemStyleThe style object to be set

See Also


SetStyle(string, TableItemStyle)

Sets the style to a specified range of cells.

public void SetStyle(string cellRange, TableItemStyle style)
ParameterTypeDescription
cellRangeStringThe range of cells’ names, like “A1:D6”
styleTableItemStyleThe style object to be set

See Also