Skip to main content

DataControlBase.SelectedItems Property

Gets data objects that correspond to items currently selected within a grid.

Namespace: DevExpress.UI.Xaml.Grid

Assembly: DevExpress.UI.Xaml.Grid.v21.2.dll

NuGet Package: DevExpress.Uwp.Controls

Declaration

public IList SelectedItems { get; set; }

Property Value

Type Description
IList

The list which contains data objects corresponding to selected items.

Remarks

The SelectedItems collection contains data objects which correspond to items currently selected within a grid. To select an item, use the DataControlBase.SelectItem method. To unselect an item, use the DataControlBase.UnselectItem method.

See Also