Skip to main content
All docs
V23.2
.NET 6.0+
  • The page you are viewing does not exist in the .NET Framework 4.5.2+ platform documentation. This link will take you to the parent topic of the current section.

DxGridListEditor.FocusedObject Property

Returns the focused object.

Namespace: DevExpress.ExpressApp.Blazor.Editors

Assembly: DevExpress.ExpressApp.Blazor.v23.2.dll

NuGet Package: DevExpress.ExpressApp.Blazor

Declaration

public override object FocusedObject { get; set; }

Property Value

Type Description
Object

The focused object.

Remarks

The FocusedObject property has a value in the following cases:

  • A user uses the new item row to create a new object. The FocusedObject property returns this new object.
  • A user selects an object in the grid. The FocusedObject property returns the selected object.

In other cases, the FocusedObject property returns null. For example, this happens if a user selected multiple objects or no object is selected.

The DxGridListEditor does not allow you to change the focused object in ListViewOnly mode. The FocusedObject property has a setter method, but this method calls the ListEditor.FocusedObject virtual property setter that has no effect.

See Also