Gets or sets a value indicating how the control responds to user actions.
Namespace: MindFusion.Diagramming
Assembly: MindFusion.Diagramming
SyntaxC#
Copy Code
|
|---|
public Behavior Behavior { get; set; } |
Visual Basic
Copy Code
|
|---|
Public Property Behavior As Behavior |
A member of the Behavior enumeration. The default is LinkShapes.
RemarksThe property specifies how the control responds to user actions with the mouse. The default value, LinkShapes, facilitates drawing of flowchart diagrams. LinkTables causes creating table nodes and links while the user draws with the mouse, allowing creation of entity-relationship or class-hierarchy diagrams. There are several more values that can be assigned to the property, that make the control draw single types of items, for example only shape nodes, only control nodes, only links, and so on. These are useful when implementing the ability to select specific drawing tools in applications.
See Also