[]
Sets the value corresponding to the cell in the specified range.
public void SetCellValue(GridCellRange range, object value)
Public Sub SetCellValue(range As GridCellRange, value As Object)
| Type | Name | Description |
|---|---|---|
| GridCellRange | range | The range of the cell. |
| object | value | The value to be set. |
Sets the value corresponding to the cell in the specified range.
public void SetCellValue(GridCellType cellType, GridCellRange range, object value)
Public Sub SetCellValue(cellType As GridCellType, range As GridCellRange, value As Object)
| Type | Name | Description |
|---|---|---|
| GridCellType | cellType | The type of cell. |
| GridCellRange | range | The range of the cell. |
| object | value | The value to be set. |
Sets the value corresponding to the cell in the specified range.
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)
| Type | Name | Description |
|---|---|---|
| GridCellType | cellType | The type of cell. |
| int | row | The row. |
| int | column | The column. |
| object | value | The value to be set. |
Sets the value corresponding to the cell in the specified row and column.
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)
| Type | Name | Description |
|---|---|---|
| GridCellType | cellType | The type of cell. |
| GridRow | row | The row. |
| GridColumn | column | The column. |
| object | value | The value. |