共用方式為


WorksheetBase.PageSetup 屬性

取得 Microsoft.Office.Interop.Excel.PageSetup,其中包含工作表所有版面設定的設定值。

命名空間:  Microsoft.Office.Tools.Excel
組件:  Microsoft.Office.Tools.Excel.v4.0.Utilities (在 Microsoft.Office.Tools.Excel.v4.0.Utilities.dll 中)

語法

'宣告
Public ReadOnly Property PageSetup As PageSetup
    Get
public PageSetup PageSetup { get; }

屬性值

型別:Microsoft.Office.Interop.Excel.PageSetup
Microsoft.Office.Interop.Excel.PageSetup ,其中包含工作表所有版面設定的設定值。

範例

下列程式碼範例會使用 PageSetup 屬性設定工作表的下方邊界和頁首邊界、起始頁碼和置中頁首/頁尾。

這是示範文件層級自訂的範例。

Private Sub AdjustPageFormat()
    With Me.PageSetup
        .BottomMargin = 10
        .FirstPageNumber = 1
        .HeaderMargin = 10
        .CenterHeader = "December Sales Forcasts"
        .CenterFooter = DateTime.Now.ToShortDateString()
    End With

    ' Enter a range value and then preview the worksheet to 
    ' display the page setup changes.
    Me.Range("A1", "A5").Value2 = "Sales"
    Me.PrintPreview(False)
End Sub
private void AdjustPageFormat()
{
    this.PageSetup.BottomMargin = 10;
    this.PageSetup.FirstPageNumber = 1;
    this.PageSetup.HeaderMargin = 10;
    this.PageSetup.CenterHeader = "December Sales Forcasts";
    this.PageSetup.CenterFooter = DateTime.Now.ToShortDateString();

    // Enter a range value and then preview the worksheet to 
    // display the page setup changes.
    this.Range["A1", "A5"].Value2 = "Sales";
    this.PrintPreview(false);
}

.NET Framework 安全性

請參閱

參考

WorksheetBase 類別

Microsoft.Office.Tools.Excel 命名空間