Search Results for

    Show / Hide Table of Contents

    Class TableView.CellActivatedEventArgs

    Defines the event arguments for CellActivated event
    Inheritance
    object
    EventArgs
    TableView.CellActivatedEventArgs
    Inherited Members
    EventArgs.Empty
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: Terminal.Gui
    Assembly: Terminal.Gui.dll
    Syntax
    public class TableView.CellActivatedEventArgs : EventArgs

    Constructors

    | Edit this page View Source

    CellActivatedEventArgs(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 Source

    Col

    The column index of the Table cell that is being activated
    Declaration
    public int Col { get; }
    Property Value
    Type Description
    int
    | Edit this page View Source

    Row

    The row index of the Table cell that is being activated
    Declaration
    public int Row { get; }
    Property Value
    Type Description
    int
    | Edit this page View Source

    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
    • Edit this page
    • View Source
    In this article
    Back to top Generated by DocFX