Search
DiagramBase.Repaint Event
See Also
 





Raised when the diagram views should be repainted.

Namespace: MindFusion.Diagramming
Assembly: MindFusion.Diagramming

 Syntax

C#  Copy Code

public event EventHandler<RepaintEventArgs> Repaint

Visual Basic  Copy Code

Public Event Repaint As EventHandler(Of RepaintEventArgs)

 Event Data

Repaint event handlers receive an argument of type RepaintEventArgs. The following RepaintEventArgs members provide information relevant to the event:

Member name

Description

InvalidRect

A RectangleF specifying which part of the diagram should be repainted.

 Remarks

If InvalidRect equals to RectangleF.Empty, the whole diagram should be repainted.

 See Also