Search
DiagramItem.Selected Property
See Also
 





Gets or sets a value indicating whether a diagram item is selected.

Namespace: MindFusion.Diagramming
Package: MindFusion.Diagramming

 Syntax

C#  Copy Code

public bool Selected { get; set; }

Visual Basic  Copy Code

Public Property Selected As Boolean

 Property Value

true if the item is selected; otherwise, false.

 Remarks

Use the property to check which items are selected by the user, or to programmatically select items if needed. Selected items adjustment handles are painted using the pen and brush specified through the SelectedItemHandlesStyle property. You can specify if users first have to select items in order to modify them with the ModificationStart property.

 See Also