Interface
IListViewRenderer

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:

cs-api-definition
public interface IListViewRenderer

Properties

IsSwipingInProgress

Gets a value indicating whether a swipe operation is currently in progress.

Declaration

cs-api-definition
bool IsSwipingInProgress { get; }

Property Value

bool

true if swiping is in progress; otherwise, false.

Methods

CancelLoadOnDemand()

Cancels the load on demand operation.

Declaration

cs-api-definition
void CancelLoadOnDemand()

ClearSelection()

Clears the current selection.

Declaration

cs-api-definition
void ClearSelection()

DeselectItem(object)

Deselects the specified item.

Declaration

cs-api-definition
void DeselectItem(object item)

Parameters

item

object

The item to deselect.

EndItemSwipe(bool)

Ends the item swipe operation.

Declaration

cs-api-definition
void EndItemSwipe(bool isAnimated)

Parameters

isAnimated

bool

if set to true the operation is animated.

EndRefresh(bool)

Ends the refresh operation.

Declaration

cs-api-definition
void EndRefresh(bool isAnimated)

Parameters

isAnimated

bool

if set to true the operation is animated.

OnItemPropertyChanged(object)

Called when a property of an item changes.

Declaration

cs-api-definition
void OnItemPropertyChanged(object item)

Parameters

item

object

The item whose property changed.

ScrollItemIntoView(object)

Scrolls the specified item into the visible area.

Declaration

cs-api-definition
void ScrollItemIntoView(object item)

Parameters

item

object

The item to scroll into view.

SelectItem(object)

Selects the specified item.

Declaration

cs-api-definition
void SelectItem(object item)

Parameters

item

object

The item to select.