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 | |
---|---|---|
Additional |
The custom painting code executes after item's interior and frame are painted by MindFusion.Diagramming for .NET MAUI, 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 .NET MAUI. 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 .NET MAUI. |
|
ShadowOnly |
Only the shadow of an item is painted by custom code, the item itself is drawn by the component. |
These values can be assigned to the CustomDraw property of shapes, tables and links.
Diagramming for .NET MAUI Guide | © 2024 MindFusion |