MindFusion.Wpf Pack Programmer's Guide
CustomDraw Enumeration
See Also
 





Specifies what kind of custom painting to perform on diagram elements.

Namespace: MindFusion.Diagramming.Wpf
Assembly: MindFusion.Diagramming.Wpf

 Syntax

C#  Copy Code

public enum CustomDraw

Visual Basic  Copy Code

Public Enum CustomDraw

 Members

  Member name Description

Additional

The custom painting code executes after item's interior and frame are painted by Diagramming for WPF, but before text is rendered. In this mode, the DrawingContext instance passed to the custom drawing event handler has a clipping region applied to it.

Additional2

The custom painting code executes after all parts of an item are painted by Diagramming for WPF. In this mode, the DrawingContext instance passed to the custom drawing event handler doesn't have a clipping region applied to it.

Full

The component does not do any standard drawing, the entire painting of an item is done by the application.

None

Do not perform custom drawing, let all painting be done by Diagramming for WPF.

 Remarks

These values can be assigned to the CustomDraw property of shapes, tables and links.

 See Also

MindFusion.Diagramming.Wpf Namespace