Skip to main content

DataControlBase.SelectedItem Property

Get or sets the currently focused data item.

Namespace: DevExpress.UI.Xaml.Grid

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

NuGet Package: DevExpress.Uwp.Controls

Declaration

[CloneDetailMode(CloneDetailMode.Skip)]
public object SelectedItem { get; set; }

Property Value

Type Description
Object

A Object specifying the focused row.

Remarks

When record multi-selection is disabled, both the DataControlBase.CurrentItem and SelectedItem properties refer to the focused record.

When multi-selection mode is enabled, the DataControlBase.CurrentItem property refers to the last selected object (focused record), while the SelectedItem property refers to the first selected object (the first item in the DataControlBase.SelectedItems collection).

See Also