Search
DiagramView.CustomBehavior Property
See Also
 






Gets or sets a custom behavior object specifying how MindFusion.Diagramming responds to user input.

Namespace: MindFusion.Diagramming
Assembly: MindFusion.Diagramming

 Syntax

C#  Copy Code

public BaseTouchBehavior CustomBehavior { get; set; }

Visual Basic  Copy Code

Public Property CustomBehavior As BaseTouchBehavior

 Property Value

An instance of a BaseTouchBehavior-derived class. The default value is null.

 Remarks

MindFusion.Diagramming for .NET MAUI provides several stock implementations of the BaseTouchBehavior class that can be used by assigning a member of the Behavior enumeration to the view's Behavior property. Create a custom behavior class only if the predefined ones don't meet your application requirements.

 See Also