Search
DrawCellEventArgs Constructor
See Also
 





Initializes a new instance of the DrawCellEventArgs class.

Namespace: MindFusion.Diagramming
Assembly: MindFusion.Diagramming

 Syntax

C#  Copy Code

public DrawCellEventArgs (
    IGraphics graphics,
    TableNode table,
    int column,
    int row,
    Rect bounds
)

Visual Basic  Copy Code

Public New ( _
    graphics As IGraphics, _
    table As TableNode, _
    column As Integer, _
    row As Integer, _
    bounds As Rect _
)

 Parameters

graphics

The IGraphics object that represents the target of the drawing operation.

table

The TableNode related to the event.

column

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

row

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

bounds

The bounding rectangle of the cell being drawn.

 See Also