Search
DrawNodeEventArgs Constructor
See Also
 





Initializes a new instance of the DrawNodeEventArgs class.

Namespace: MindFusion.Diagramming
Package: MindFusion.Diagramming

 Syntax

C#  Copy Code

public DrawNodeEventArgs (
    IGraphics graphics,
    DiagramNode node,
    bool shadow,
    RectangleF bounds
)

Visual Basic  Copy Code

Public New ( _
    graphics As IGraphics, _
    node As DiagramNode, _
    shadow As Boolean, _
    bounds As RectangleF _
)

 Parameters

graphics

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

node

The DiagramNode related to the event.

shadow

Specifies whether to draw the node's shadow or the node itself.

bounds

The bounding rectangle of the node being drawn.

 See Also