InterfaceIListViewRenderer
Defines the contract for list view renderers that provide platform-specific implementations.
Definition
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
true
if swiping is in progress; otherwise, false
.
Methods
CancelLoadOnDemand()
Cancels the load on demand operation.
Declaration
void CancelLoadOnDemand()
DeselectItem(object)
Deselects the specified item.
Declaration
void DeselectItem(object item)
Parameters
item
The item to deselect.
EndItemSwipe(bool)
Ends the item swipe operation.
Declaration
void EndItemSwipe(bool isAnimated)
Parameters
isAnimated
if set to true
the operation is animated.
EndRefresh(bool)
Ends the refresh operation.
Declaration
void EndRefresh(bool isAnimated)
Parameters
isAnimated
if set to true
the operation is animated.
OnItemPropertyChanged(object)
Called when a property of an item changes.
Declaration
void OnItemPropertyChanged(object item)
Parameters
item
The item whose property changed.
ScrollItemIntoView(object)
Scrolls the specified item into the visible area.
Declaration
void ScrollItemIntoView(object item)
Parameters
item
The item to scroll into view.
SelectItem(object)
Selects the specified item.
Declaration
void SelectItem(object item)
Parameters
item
The item to select.