0
當我打印出由宏創建的發票時,缺省頁眉和頁腳顯示。 我想在我的宏中刪除它們。LibreOffice Calc宏 - 如何刪除給定工作表中的頁眉和頁腳?
當我打印出由宏創建的發票時,缺省頁眉和頁腳顯示。 我想在我的宏中刪除它們。LibreOffice Calc宏 - 如何刪除給定工作表中的頁眉和頁腳?
我發現這是把頁眉和頁腳註銷的方式:
Dim oDoc As Object
Dim oSheet As Object
Dim oStyles As Variant
Dim oPstyle As Variant
oDoc=ThisComponent
oSheet=oDoc.Sheets.getByName("Sheet1")
oStyles=oDoc.StyleFamilies.getByName("PageStyles")
oPstyle=oStyles.getByName(oSheet.PageStyle)
oPstyle.HeaderOn=FALSE
oPstyle.FooterOn=FALSE