Search
CellEventArgs Constructor
See Also
 






Initializes a new instance of the CellEventArgs class.

Namespace: MindFusion.Diagramming
Assembly: MindFusion.Diagramming

 Syntax

C#  Copy Code

public CellEventArgs (
    Cell cell,
    Point mousePosition,
    int column,
    int row
)

Visual Basic  Copy Code

Public New ( _
    cell As Cell, _
    mousePosition As Point, _
    column As Integer, _
    row As Integer _
)

 Parameters

cell

The Cell 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