Specifies what kind of custom painting to perform on diagram elements.
Namespace: MindFusion.Diagramming.Wpf
Assembly: MindFusion.Diagramming.Wpf
C# Copy Code |
---|
public enum CustomDraw |
Visual Basic Copy Code |
---|
Public Enum CustomDraw |
Member name | Description | |
---|---|---|
Additional |
The custom painting code executes after item's interior and frame are painted by WpfDiagram, 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 WpfDiagram. 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 WpfDiagram. |
These values can be assigned to the CustomDraw property of shapes, tables and links.
WpfDiagram Programmer's Guide | © 2024 MindFusion |