GetPageCount
コンテンツ
[
隠れる
]GetPageCount(SaveOptions)
指定されたものを使用してレンダリングされるプロジェクトのページ数を返しますSaveOptions
.
public int GetPageCount(SaveOptions saveOptions)
パラメータ | タイプ | 説明 |
---|---|---|
saveOptions | SaveOptions | ページ数を取得する保存オプション。 |
戻り値
レンダリングされるページ数。
例
この例では、HtmlSaveOptions のインスタンスと結果の HTML のページ数がコンソールに書き込まれます。
[C#]
Project project = new Project(@"test.mpp");
HtmlSaveOptions saveOptions = new HtmlSaveOptions
{
IncludeProjectNameInPageHeader = false,
IncludeProjectNameInTitle = false,
PageSize = PageSize.A4,
Timescale = Timescale.Days,
StartDate = project.Get(Prj.StartDate).Date,
EndDate = project.Get(Prj.FinishDate).Date
};
Console.WriteLine(project.GetPageCount(saveOptions));
関連項目
- class SaveOptions
- class Project
- 名前空間 Aspose.Tasks
- 組み立て Aspose.Tasks
GetPageCount()
デフォルトを使用してレンダリングされるプロジェクトのページ数を返しますTimescale
(日).
public int GetPageCount()
戻り値
レンダリングするページ数。
関連項目
- class Project
- 名前空間 Aspose.Tasks
- 組み立て Aspose.Tasks
GetPageCount(Timescale)
指定されたものを使用してレンダリングされるプロジェクトのページ数を返しますTimescale
.
public int GetPageCount(Timescale scale)
パラメータ | タイプ | 説明 |
---|---|---|
scale | Timescale | ページ数を取得するスケール。 |
戻り値
レンダリングするページ数。
関連項目
- enum Timescale
- class Project
- 名前空間 Aspose.Tasks
- 組み立て Aspose.Tasks
GetPageCount(PresentationFormat)
デフォルトを使用してレンダリングされるプロジェクトのページ数を返しますTimescale
(日) および与えられたPresentationFormat
public int GetPageCount(PresentationFormat format)
パラメータ | タイプ | 説明 |
---|---|---|
format | PresentationFormat | ページ数を取得する形式。 |
戻り値
レンダリングするページ数。
関連項目
- enum PresentationFormat
- class Project
- 名前空間 Aspose.Tasks
- 組み立て Aspose.Tasks
GetPageCount(PresentationFormat, Timescale)
指定されたものを使用してレンダリングされるプロジェクトのページ数を返しますTimescale
とPresentationFormat
.
public int GetPageCount(PresentationFormat format, Timescale scale)
パラメータ | タイプ | 説明 |
---|---|---|
format | PresentationFormat | ページ数を取得する形式。 |
scale | Timescale | ページ数を取得するスケール。 |
戻り値
レンダリングされるページ数。
関連項目
- enum PresentationFormat
- enum Timescale
- class Project
- 名前空間 Aspose.Tasks
- 組み立て Aspose.Tasks
GetPageCount(PageSize, Timescale, DateTime, DateTime)
指定されたものを使用してレンダリングされるプロジェクトのページ数を返しますTimescale
、PresentationFormat
および日付範囲.
public int GetPageCount(PageSize pageSize, Timescale scale, DateTime startDate, DateTime endDate)
パラメータ | タイプ | 説明 |
---|---|---|
pageSize | PageSize | ページ数を取得するサイズ。 |
scale | Timescale | ページ数を取得するスケール。 |
startDate | DateTime | ページ数を取得する開始日。 |
endDate | DateTime | ページ数を取得する終了日。 |
戻り値
レンダリングするページ数。
関連項目
- enum PageSize
- enum Timescale
- class Project
- 名前空間 Aspose.Tasks
- 組み立て Aspose.Tasks
GetPageCount(PageSize, Timescale)
指定されたものを使用してレンダリングされるプロジェクトのページ数を返しますTimescale
とPageSize
.
public int GetPageCount(PageSize pageSize, Timescale scale)
パラメータ | タイプ | 説明 |
---|---|---|
pageSize | PageSize | ページ数を取得するサイズ。 |
scale | Timescale | ページ数を取得するスケール。 |
戻り値
レンダリングするページ数。
関連項目
- enum PageSize
- enum Timescale
- class Project
- 名前空間 Aspose.Tasks
- 組み立て Aspose.Tasks