Excel) (PageSetup.BottomMargin 屬性
會傳回或設定下邊界的大小,以 點為單位。 讀取/寫入的 Double。
語法
運算式。BottomMargin
表達 代表 PageSetup 物件的 變數。
註解
邊界的設定或傳回均以點為單位。 使用 InchesToPoints 方法或 CentimetersToPoints 方法來進行轉換。
範例
下列兩個範例會將 Sheet1 的下邊界設定為 0.5 英吋 (36 點)。
Worksheets("Sheet1").PageSetup.BottomMargin = _
Application.InchesToPoints(0.5)
Worksheets("Sheet1").PageSetup.BottomMargin = 36
本範例會顯示 Sheet1 下邊界目前的設定值。
marginInches = Worksheets("Sheet1").PageSetup.BottomMargin / _
Application.InchesToPoints(1)
MsgBox "The current bottom margin is " & marginInches & " inches"
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。