[]
        
(Showing Draft Content)

C1.WinUI.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)
Public Sub SetCellValue(range As GridCellRange, value As Object)
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)
Public Sub SetCellValue(cellType As GridCellType, range As GridCellRange, value As Object)
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)
Public Sub SetCellValue(cellType As GridCellType, row As Integer, column As Integer, value As Object)
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)
Public Sub SetCellValue(cellType As GridCellType, row As GridRow, column As GridColumn, value As Object)
Parameters
Type Name Description
GridCellType cellType

The type of cell.

GridRow row

The row.

GridColumn column

The column.

object value

The value.