Class
DataGridVisibleItemsChangedEventArgs

Provides data for the VisibleItemsChanged event.

Definition

Namespace:Telerik.Maui.Controls.DataGrid

Assembly:Telerik.Maui.Controls.dll

Syntax:

cs-api-definition
public class DataGridVisibleItemsChangedEventArgs : EventArgs

Inheritance: objectEventArgsDataGridVisibleItemsChangedEventArgs

Inherited Members EventArgs.Empty

Constructors

DataGridVisibleItemsChangedEventArgs(IReadOnlyList<object>, IReadOnlyList<object>)

Initializes a new instance of the DataGridVisibleItemsChangedEventArgs class.

Declaration

cs-api-definition
public DataGridVisibleItemsChangedEventArgs(IReadOnlyList<object> addedItems, IReadOnlyList<object> removedItems)

Parameters

addedItems

IReadOnlyList<object>

The items that have become visible in the viewport.

removedItems

IReadOnlyList<object>

The items that are no longer visible in the viewport.

Properties

AddedItems

Gets the items that have become visible in the viewport since the last change.

Declaration

cs-api-definition
public IReadOnlyList<object> AddedItems { get; }

Property Value

IReadOnlyList<object>

RemovedItems

Gets the items that are no longer visible in the viewport since the last change.

Declaration

cs-api-definition
public IReadOnlyList<object> RemovedItems { get; }

Property Value

IReadOnlyList<object>