マージンの設定
Contents
[
Hide
]
Aspose.Cells は Microsoft Excel のページ設定オプションを完全にサポートします。開発者は、印刷プロセスを制御するためにワークシートのページ設定を構成する必要がある場合があります。このトピックでは、Aspose.Cells を使用してページの余白を構成する方法について説明します。
マージンの設定
Aspose.Cells はクラスを提供し、ワークブック、Excel ファイルを表します。のワークブッククラスにはワークシートExcel ファイル内の各ワークシートにアクセスできるコレクション。ワークシートは、ワークシートクラス。
のワークシートクラスが提供するページ設定ワークシートのページ設定オプションを設定するために使用されるプロパティ。のページ設定属性はのオブジェクトですページ設定開発者が印刷ワークシートにさまざまなページ レイアウト オプションを設定できるようにするクラス。のページ設定クラスは、ページ設定オプションを設定するために使用されるさまざまなプロパティとメソッドを提供します。
ページ余白
を使用して、ページの余白 (左、右、上、下) を設定します。ページ設定クラスのメンバー。ページ余白を指定するために使用されるメソッドのいくつかを以下に示します。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET | |
// The path to the documents directory. | |
string dataDir = RunExamples.GetDataDir(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | |
// Create a workbook object | |
Workbook workbook = new Workbook(); | |
// Get the worksheets in the workbook | |
WorksheetCollection worksheets = workbook.Worksheets; | |
// Get the first (default) worksheet | |
Worksheet worksheet = worksheets[0]; | |
// Get the pagesetup object | |
PageSetup pageSetup = worksheet.PageSetup; | |
// Set bottom,left,right and top page margins | |
pageSetup.BottomMargin = 2; | |
pageSetup.LeftMargin = 1; | |
pageSetup.RightMargin = 1; | |
pageSetup.TopMargin = 3; | |
// Save the Workbook. | |
workbook.Save(dataDir + "SetMargins_out.xls"); |
ページの中央に配置
ページの水平方向と垂直方向の中央に何かを配置することができます。このために、いくつかの便利なメンバーがありますページ設定クラス、中央水平と中央垂直.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET | |
// The path to the documents directory. | |
string dataDir = RunExamples.GetDataDir(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | |
// Create a workbook object | |
Workbook workbook = new Workbook(); | |
// Get the worksheets in the workbook | |
WorksheetCollection worksheets = workbook.Worksheets; | |
// Get the first (default) worksheet | |
Worksheet worksheet = worksheets[0]; | |
// Get the pagesetup object | |
PageSetup pageSetup = worksheet.PageSetup; | |
// Specify Center on page Horizontally and Vertically | |
pageSetup.CenterHorizontally = true; | |
pageSetup.CenterVertically = true; | |
// Save the Workbook. | |
workbook.Save(dataDir + "CenterOnPage_out.xls"); |
ヘッダーとフッターの余白
でヘッダーとフッターの余白を設定しますページ設定などのクラスメンバーヘッダーマージンとフッターマージン.