Class TableView.CellActivatedEventArgs
Defines the event arguments for CellActivated event
Inherited Members
Namespace: Terminal.Gui
Assembly: Terminal.Gui.dll
Syntax
public class TableView.CellActivatedEventArgs : EventArgs
Constructors
| Edit this page View SourceCellActivatedEventArgs(DataTable, int, int)
Creates a new instance of arguments describing a cell being activated in TableView
Declaration
public CellActivatedEventArgs(DataTable t, int col, int row)
Parameters
| Type | Name | Description |
|---|---|---|
| DataTable | t | |
| int | col | |
| int | row |
Properties
| Edit this page View SourceCol
The column index of the Table cell that is being activated
Declaration
public int Col { get; }
Property Value
| Type | Description |
|---|---|
| int |
Row
The row index of the Table cell that is being activated
Declaration
public int Row { get; }
Property Value
| Type | Description |
|---|---|
| int |
Table
The current table to which the new indexes refer. May be null e.g. if selection change is the result of clearing the table from the view
Declaration
public DataTable Table { get; }
Property Value
| Type | Description |
|---|---|
| DataTable |