Specifies what kind of custom painting to perform on diagram elements.
Namespace: MindFusion.Diagramming
Assembly: MindFusion.Diagramming
C# Copy Code |
---|
public enum CustomDraw |
Visual Basic Copy Code |
---|
Public Enum CustomDraw |
Member name | Description | |
---|---|---|
None |
Do not perform custom drawing, let all painting be done by MvcDiagram. |
|
Additional |
The custom painting code executes after item's interior and frame are painted by MvcDiagram, 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. |
|
Full |
The component does not do any standard drawing, the entire painting of an item is done by the application. |
|
ShadowOnly |
Only the shadow of an item is painted by custom code, the item itself is drawn by the component. |
|
Additional2 |
The custom painting code executes after all parts of an item are painted by MvcDiagram. In this mode, the Graphics instance passed to the custom drawing event handler doesn't have a clipping region applied to it. |
These values can be assigned to the CustomDraw property of shapes, tables and links.
MvcDiagram Programmer's Guide | © 2024 MindFusion |