XLConnect (version 0.2-15)

createFreezePane-methods: Creating a freeze pane on a worksheet

Description

Creates a freeze pane on a specified worksheet.

Usage

# S4 method for workbook,character
createFreezePane(object, sheet, colSplit, rowSplit, leftColumn, topRow)
# S4 method for workbook,numeric
createFreezePane(object, sheet, colSplit, rowSplit, leftColumn, topRow)

Arguments

object

The '>workbook to use

sheet

The name or index of the sheet on which to create a freeze pane

colSplit

Horizontal position of freeze (as column index or name)

rowSplit

Vertical position of freeze (as number of rows)

leftColumn

Left column (as column index or name) visible in right pane. If not specified, the default is leftColumn=colSplit

topRow

Top row (as index) visible in bottom pane. If not specified, the default is topRow=rowSplit

References

How to create a freeze pane/split pane in Office 2007 http://office.microsoft.com/en-us/excel-help/freeze-or-lock-rows-and-columns-HP001217048.aspx

See Also

'>workbook createSplitPane removePane

Examples

Run this code
# NOT RUN {
# Load workbook (create if not existing)
wb <- loadWorkbook("freezePaneTest.xlsx", create = TRUE)

# Create a worksheet named 'Sheet1'
createSheet(wb, name = "Sheet1")

# Create a freeze pane on Sheet1, using as reference position the 5th column and the 5th row,
# showing the 10th column as the leftmost visible one in the right pane
# and the 10th row as the top visible one in the bottom pane.
createFreezePane(wb, "Sheet1", 5, 5, 10, 10)

# Save workbook (this actually writes the file to disk)
saveWorkbook(wb)
# }

Run the code above in your browser using DataCamp Workspace