[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IWorksheet.FreezeTrailingPanes

FreezeTrailingPanes Method

FreezeTrailingPanes(int, int)

Sets trailing frozen panes at the specified row and column positions.

This method sets the number of trailing rows and trailing columns that remain visible when the worksheet is scrolled.

Declaration
void FreezeTrailingPanes(int row, int column)
Sub FreezeTrailingPanes(row As Integer, column As Integer)
Parameters
Type Name Description
int row

The trailing frozen row position.

int column

The trailing frozen column position.

Examples
worksheet.Range["A1:B3"].Value = new object[,] {
    {"Name", "Value"},
    {"A", 100},
    {"B", 200}
});
worksheet.FreezeTrailingPanes(1, 1);