Skip to main content
Row

PanesFrozenEventArgs(String, Int32, Int32, CellPosition) Constructor

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

Namespace: DevExpress.Spreadsheet

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

NuGet Package: DevExpress.Spreadsheet.Core

Declaration

public PanesFrozenEventArgs(
    string sheetName,
    int rowOffset,
    int columnOffset,
    CellPosition topLeftCell
)

Parameters

Name Type Description
sheetName String

A String that is the name of the worksheet whose area has been frozen.

rowOffset Int32

An integer value that is the zero-based offset of the last frozen row relative to the first row in a worksheet or the row that contains the specified cell (the topLeftCell parameter).

columnOffset Int32

An integer value that is the zero-based offset of the last frozen column relative to the first column in a worksheet or the column that contains the specified cell (the topLeftCell parameter).

topLeftCell DevExpress.XtraSpreadsheet.Model.CellPosition

A CellPosition object specifying the position of the cell from which freezing starts.

Remarks

The PanesFrozenEventArgs is created automatically and passed to the handler of the SpreadsheetControl.PanesFrozen event.

See Also