ASP.NET Pack Programmer's Guide
CustomDraw Enumeration
See Also
 





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

Namespace: MindFusion.Diagramming
Package: MindFusion.Diagramming

 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 MindFusion.Diagramming for WebForms, but before text is rendered. In this mode, the Graphics 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 MindFusion.Diagramming for WebForms. In this mode, the Graphics 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 MindFusion.Diagramming for WebForms.

ShadowOnly

Only the shadow of an item is painted by custom code, the item itself is drawn by the component.

 Remarks

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

 See Also

MindFusion.Diagramming Namespace