Skip to main content
A newer version of this page is available. .

DiagramControl.SelectItems(DiagramItem[]) Method

Selects the specified diagram items.

Namespace: DevExpress.Xpf.Diagram

Assembly: DevExpress.Xpf.Diagram.v20.2.dll

NuGet Packages: DevExpress.WindowsDesktop.Wpf.Diagram, DevExpress.Wpf.Diagram

Declaration

public void SelectItems(
    params DiagramItem[] items
)

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