DiagramControl.SelectItems(DiagramItem[]) Method
Selects the specified diagram items.
Namespace: DevExpress.Xpf.Diagram
Assembly: DevExpress.Xpf.Diagram.v24.1.dll
NuGet Package: DevExpress.Wpf.Diagram
Declaration
Parameters
Name | Type | Description |
---|---|---|
items | DiagramItem[] | A list of DiagramItem objects representing the diagram items to select. |
Remarks
The selection specified by the SelectItems method replaces the existing selection. To prevent this behavior, use the DiagramControl.SelectItems(IEnumerable<DiagramItem> items, ModifySelectionMode modifySelectionMode) overload and set the modifySelectionMode parameter to ModifySelectionMode.AddToSelection.
See Also