[]
        
(Showing Draft Content)

C1.WPF.FlexGrid.C1FlexSheet.Item

this Property

this[string]

Gets or sets the value stored in a grid cell using Excel range notation.

Declaration
public object this[string cellReference] { get; set; }
Public Default Property Item(cellReference As String) As Object
Parameters
Type Name Description
string cellReference

Cell reference using Excel notation (e.g. "A1", "AB32").

Property Value
Type Description
object

The value stored in the cell.

this[int, Column]

Overridden to record individual cell assignments during a paste operation.

Declaration
public override object this[int row, Column col] { get; set; }
Public Overrides Default Property Item(row As Integer, col As Column) As Object
Parameters
Type Name Description
int row
Column col
Overrides