Gets or sets a value indicating whether a diagram item is selected.
Namespace: MindFusion.Diagramming
Assembly: MindFusion.Diagramming
SyntaxC#
Copy Code
|
|---|
public bool Selected { get; set; } |
Visual Basic
Copy Code
|
|---|
Public Property Selected As Boolean |
true if the item is selected; otherwise, false.
RemarksUse 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