[]
        
(Showing Draft Content)

C1.Blazor.Grid.FlexGrid.SetCellValue

SetCellValue Method

SetCellValue(GridCellRange, object)

Sets the value corresponding to the cell in the specified range.

Declaration
public void SetCellValue(GridCellRange range, object value)
Parameters
Type Name Description
GridCellRange range

The range of the cell.

object value

The value to be set.

SetCellValue(GridCellType, GridCellRange, object)

Sets the value corresponding to the cell in the specified range.

Declaration
public void SetCellValue(GridCellType cellType, GridCellRange range, object value)
Parameters
Type Name Description
GridCellType cellType

The type of cell.

GridCellRange range

The range of the cell.

object value

The value to be set.

SetCellValue(GridCellType, int, int, object)

Sets the value corresponding to the cell in the specified range.

Declaration
public void SetCellValue(GridCellType cellType, int row, int column, object value)
Parameters
Type Name Description
GridCellType cellType

The type of cell.

int row

The row.

int column

The column.

object value

The value to be set.

SetCellValue(GridCellType, GridRow, GridColumn, object)

Sets the value corresponding to the cell in the specified row and column.

Declaration
public void SetCellValue(GridCellType cellType, GridRow row, GridColumn column, object value)
Parameters
Type Name Description
GridCellType cellType

The type of cell.

GridRow row

The row.

GridColumn column

The column.

object value

The value.