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