Skip to main content
All docs
V23.2

XtraScrollEventArgs(ScrollEventType, Int32, Int32) Constructor

Initializes a new instance of the XtraScrollEventArgs class with the specified Type, OldValue, and NewValue properties.

Namespace: DevExpress.XtraEditors

Assembly: DevExpress.Utils.v23.2.dll

NuGet Packages: DevExpress.Utils, DevExpress.Wpf.Core

Declaration

public XtraScrollEventArgs(
    ScrollEventType type,
    int oldValue,
    int newValue
)

Parameters

Name Type Description
type ScrollEventType

The type of action that raises the event. This value is assigned to the Type property.

oldValue Int32

An integer value that specifies the previous position of the scrollbar. This value is assigned to the XtraScrollEventArgs.OldValue property.

newValue Int32

An integer value that specifies the new position of the scrollbar. This value is assigned to the XtraScrollEventArgs.NewValue property.

See Also