Interface ISupportCurrentItem
Defines a type that has a notation for a Current item. This notation is typical for data-bound components like RadDataGrid.
Namespace: Telerik.Maui
Assembly: Telerik.Maui.Core.dll
Syntax
public interface ISupportCurrentItem
Properties
CurrentItem
Gets the object instance that is considered Current.
Declaration
object CurrentItem { get; }
Property Value
System.
|
IsCurrentItemInView
Gets a value indicating whether the current item is within the data view. For example if a filtering operation is applied, the current item may not be visible.
Declaration
bool IsCurrentItemInView { get; }
Property Value
System.
|
Methods
MoveCurrentTo(Object)
Attempts to set the Current
Declaration
bool MoveCurrentTo(object item)
Parameters
System. The object instance to set as current. |
Returns
System. True if the operation succeeded, false otherwise. |
MoveCurrentToFirst()
Attempts to move the Current
Declaration
bool MoveCurrentToFirst()
Returns
System. True if the operation succeeded, false otherwise. |
MoveCurrentToLast()
Attempts to move the Current
Declaration
bool MoveCurrentToLast()
Returns
System. True if the operation succeeded, false otherwise. |
MoveCurrentToNext()
Attempts to move the Current
Declaration
bool MoveCurrentToNext()
Returns
System. True if the operation succeeded, false otherwise. |
MoveCurrentToPrevious()
Attempts to move the Current
Declaration
bool MoveCurrentToPrevious()
Returns
System. True if the operation succeeded, false otherwise. |