Search
CellEventArgs Constructor
See Also
 





Initializes a new instance of the CellEventArgs class.

Namespace: MindFusion.Diagramming
Package: MindFusion.Diagramming

 Syntax

C#  Copy Code

public CellEventArgs (
    TableNode.Cell cell,
    MouseButton mouseButton,
    PointF mousePosition,
    int column,
    int row
)

Visual Basic  Copy Code

Public New ( _
    cell As TableNode.Cell, _
    mouseButton As MouseButton, _
    mousePosition As PointF, _
    column As Integer, _
    row As Integer _
)

 Parameters

cell

The TableNode.Cell related to the event.

mouseButton

The mouse button related to the event.

mousePosition

The position of the mouse at the time the event was raised.

column

The zero-based index of the column related to the event.

row

The zero-based index of the row related to the event.

 See Also