如何通过R RDCOMClient在excel中编辑首页编号?

时间:2019-06-05 09:00:21

标签: r rdcomclient

我正在尝试通过R在Excel中的页面设置中编辑首页编号

library(RDCOMClient)
xlApp <- COMCreate("Excel.Application")
xlApp[["Visible"]] <- TRUE
xlBook <- xlApp[["Workbooks"]]$Add()
xlSheet <- xlBook[["Worksheets"]]$Item(1)
xlSheet$PageSetup()$FirstPageNumber() <- 1

xlSheet $ PageSetup()$ FirstPageNumber()中的错误<-1:   分配的左侧无效(NULL)

1 个答案:

答案 0 :(得分:0)

x <- xlSheet[["PageSetup"]]
x[["FirstPageNumber"]] <- 1