namespace Terminal.Gui; // TOOD: SHould support Handled /// Defines the event arguments for event public class CellActivatedEventArgs : EventArgs { /// Creates a new instance of arguments describing a cell being activated in /// /// /// public CellActivatedEventArgs (ITableSource t, int col, int row) { Table = t; Col = col; Row = row; } /// The column index of the cell that is being activated /// public int Col { get; } /// The row index of the cell that is being activated /// public int Row { get; } /// /// 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 /// /// public ITableSource Table { get; } }