Skip to main content
Row

ScrollPositionChangedEventArgs(String, Int32, Int32) Constructor

Initializes a new instance of the ScrollPositionChangedEventArgs class with the specified settings.

Namespace: DevExpress.Spreadsheet

Assembly: DevExpress.Spreadsheet.v23.2.Core.dll

NuGet Package: DevExpress.Spreadsheet.Core

Declaration

public ScrollPositionChangedEventArgs(
    string sheetName,
    int columnIndex,
    int rowIndex
)

Parameters

Name Type Description
sheetName String

A string that is the name of the worksheet being scrolled.

columnIndex Int32

An integer value that specifies the zero-based index of the left-most column of the currently visible area.

rowIndex Int32

An integer value that specifies the zero-based index of the top row of the currently visible area.

Remarks

The ScrollPositionChangedEventArgs is created automatically and passed to the handler of the SpreadsheetControl.ScrollPositionChanged event.

See Also