[]
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.
void FreezeTrailingPanes(int row, int column)
Sub FreezeTrailingPanes(row As Integer, column As Integer)
| Type | Name | Description |
|---|---|---|
| int | row | The trailing frozen row position. |
| int | column | The trailing frozen column position. |
worksheet.Range["A1:B3"].Value = new object[,] {
{"Name", "Value"},
{"A", 100},
{"B", 200}
});
worksheet.FreezeTrailingPanes(1, 1);