Interface IListViewRenderer
Defines the contract for list view renderers that provide platform-specific implementations.
Namespace: Telerik.Maui.Controls.Compatibility.DataControls
Assembly: Telerik.Maui.Controls.Compatibility.dll
Syntax
public interface IListViewRenderer
Properties
IsSwipingInProgress
Gets a value indicating whether a swipe operation is currently in progress.
Declaration
bool IsSwipingInProgress { get; }
Property Value
System.Boolean
|
Methods
CancelLoadOnDemand()
Cancels the load on demand operation.
Declaration
void CancelLoadOnDemand()
ClearSelection()
Clears the current selection.
Declaration
void ClearSelection()
DeselectItem(Object)
Deselects the specified item.
Declaration
void DeselectItem(object item)
Parameters
System.Object
item
The item to deselect. |
EndItemSwipe(Boolean)
Ends the item swipe operation.
Declaration
void EndItemSwipe(bool isAnimated)
Parameters
System.Boolean
isAnimated
if set to |
EndRefresh(Boolean)
Ends the refresh operation.
Declaration
void EndRefresh(bool isAnimated)
Parameters
System.Boolean
isAnimated
if set to |
OnItemPropertyChanged(Object)
Called when a property of an item changes.
Declaration
void OnItemPropertyChanged(object item)
Parameters
System.Object
item
The item whose property changed. |
ScrollItemIntoView(Object)
Scrolls the specified item into the visible area.
Declaration
void ScrollItemIntoView(object item)
Parameters
System.Object
item
The item to scroll into view. |
SelectItem(Object)
Selects the specified item.
Declaration
void SelectItem(object item)
Parameters
System.Object
item
The item to select. |