Whatever message this page gives is out now! Go check it out!
SpreadsheetAddFreezePane(spreadsheetobj, freezcol, freezrow[, col, row]) |
Parameter | Description |
spreadsheetobj | The Excel spreadsheet object to which to add the freeze pane. |
freezcol | Specifies the column boundary of the freeze pane. The columns contained within the column boundary are frozen, while the rest of the worksheet scrolls. |
freezrow | Specifies the row boundary of the freeze pane. The rows contained within the row boundary are frozen, while the rest of the worksheet scrolls. |
col | This parameter is optional.The column that should appear next to the freezcol that you specify. This parameter is useful in hiding data. For example, in a worksheet, you can specify column 5 to appear immediately after column 2, and hide column 3 and column 4. |
row | This parameter is optional. The row that should appear next to the freezrow that you specify. This parameter is useful in hiding data. For example, in a worksheet, you can specify row 10 to appear immediately after row 7, and hide row 8 and row 9. |
SpreadSheetAddFreezePane(SpreadsheetObj,3,2); |
SpreadSheetAddFreezePane(SpreadsheetObj,3,2,5,10); |