Search
DrawNodeEventArgs Constructor
See Also
 





Initializes a new instance of the DrawNodeEventArgs class.

Namespace: MindFusion.Diagramming
Assembly: MindFusion.Diagramming

 Syntax

C#  Copy Code

public DrawNodeEventArgs (
    IGraphics graphics,
    DiagramNode node,
    bool shadow,
    RectangleF bounds,
    CustomDraw kind,
    RenderOptions options
)

Visual Basic  Copy Code

Public New ( _
    graphics As IGraphics, _
    node As DiagramNode, _
    shadow As Boolean, _
    bounds As RectangleF, _
    kind As CustomDraw, _
    options As RenderOptions _
)

 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.

kind

The CustomDraw kind for which the event is raised.

options

Specifies current view's RenderOptions.

 See Also