Share via


ItemsViewScrolledEventArgs Class

Definition

Provides data for the Scrolled event in items views.

public ref class ItemsViewScrolledEventArgs : EventArgs
public class ItemsViewScrolledEventArgs : EventArgs
type ItemsViewScrolledEventArgs = class
    inherit EventArgs
Public Class ItemsViewScrolledEventArgs
Inherits EventArgs
Inheritance
ItemsViewScrolledEventArgs

Remarks

This event args class contains information about scroll position changes in CollectionView and related controls. It includes both delta (change) values and absolute offset values, as well as information about which items are currently visible.

Constructors

Name Description
ItemsViewScrolledEventArgs()

Properties

Name Description
CenterItemIndex

Gets or sets the index of the item at the center of the view.

FirstVisibleItemIndex

Gets or sets the index of the first visible item in the view.

HorizontalDelta

Gets or sets the horizontal distance scrolled since the last scroll event.

HorizontalOffset

Gets or sets the current horizontal scroll position.

LastVisibleItemIndex

Gets or sets the index of the last visible item in the view.

VerticalDelta

Gets or sets the vertical distance scrolled since the last scroll event.

VerticalOffset

Gets or sets the current vertical scroll position.

Applies to