Spread Windows Forms 15.0
FarPoint.Win.Spread Assembly / FarPoint.Win.Spread Namespace / FpSpread Class / CellClick Event


In This Topic
    CellClick Event
    In This Topic
    Occurs when the user presses the left mouse button down in a cell.
    Syntax
    'Declaration
     
    
    Public Event CellClick As CellClickEventHandler
    'Usage
     
    
    Dim instance As FpSpread
    Dim handler As CellClickEventHandler
     
    AddHandler instance.CellClick, handler
    public event CellClickEventHandler CellClick
    Event Data

    The event handler receives an argument of type CellClickEventArgs containing data related to this event. The following CellClickEventArgs properties provide information specific to this event.

    PropertyDescription
    Gets the actual column index in layout  
    Gets the actual row index in layout  
    Gets which mouse button has been pressed.  
    Gets or sets whether to cancel default processing.  
    Gets the column index of the cell that is clicked.  
    Gets whether the cell that is clicked is in the column footer.  
    Gets whether the cell that is clicked is in the column headers.  
    Gets the row index of the cell that is clicked.  
    Gets whether the cell that is clicked is in the row headers.  
    Gets the view that contains the cell that is clicked.  
    Gets the x-coordinate of the pointer position.  
    Gets the y-coordinate of the pointer position.  
    See Also