Represents the event arguments for cell-related events in a spreadsheet.
Object
EventArgs
EventArgs.Empty
Namespace: Radzen.Blazor.Spreadsheet
Assembly: Radzen.Blazor.dll
public class CellEventArgs : EventArgsRepresents the event arguments for cell-related events in a spreadsheet.
public CellEventArgs()Gets or sets the column index of the cell.
public int Column { get; set; }
| Type | Description |
|---|---|
| int | Gets or sets the column index of the cell. |
Gets or sets the pointer event arguments associated with the cell event.
public PointerEventArgs Pointer { get; set; }
| Type | Description |
|---|---|
| PointerEventArgs | Gets or sets the pointer event arguments associated with the cell event. |
Gets or sets the row index of the cell.
public int Row { get; set; }
| Type | Description |
|---|---|
| int | Gets or sets the row index of the cell. |