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
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 セキュリティ
- 直前の呼び出し元に対する完全な信頼。このメンバーは、部分的に信頼されているコードから使用することはできません。詳細については、「部分信頼コードからのライブラリの使用」を参照してください。