GetPageCount

GetPageCount(SaveOptions)

指定されたものを使用してレンダリングされるプロジェクトのページ数を返しますSaveOptions.

public int GetPageCount(SaveOptions saveOptions)
パラメータタイプ説明
saveOptionsSaveOptionsページ数を取得する保存オプション。

戻り値

レンダリングされるページ数。

この例では、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));

関連項目


GetPageCount()

デフォルトを使用してレンダリングされるプロジェクトのページ数を返しますTimescale(日).

public int GetPageCount()

戻り値

レンダリングするページ数。

関連項目


GetPageCount(Timescale)

指定されたものを使用してレンダリングされるプロジェクトのページ数を返しますTimescale.

public int GetPageCount(Timescale scale)
パラメータタイプ説明
scaleTimescaleページ数を取得するスケール。

戻り値

レンダリングするページ数。

関連項目


GetPageCount(PresentationFormat)

デフォルトを使用してレンダリングされるプロジェクトのページ数を返しますTimescale (日) および与えられたPresentationFormat

public int GetPageCount(PresentationFormat format)
パラメータタイプ説明
formatPresentationFormatページ数を取得する形式。

戻り値

レンダリングするページ数。

関連項目


GetPageCount(PresentationFormat, Timescale)

指定されたものを使用してレンダリングされるプロジェクトのページ数を返しますTimescalePresentationFormat.

public int GetPageCount(PresentationFormat format, Timescale scale)
パラメータタイプ説明
formatPresentationFormatページ数を取得する形式。
scaleTimescaleページ数を取得するスケール。

戻り値

レンダリングされるページ数。

関連項目


GetPageCount(PageSize, Timescale, DateTime, DateTime)

指定されたものを使用してレンダリングされるプロジェクトのページ数を返しますTimescalePresentationFormatおよび日付範囲.

public int GetPageCount(PageSize pageSize, Timescale scale, DateTime startDate, DateTime endDate)
パラメータタイプ説明
pageSizePageSizeページ数を取得するサイズ。
scaleTimescaleページ数を取得するスケール。
startDateDateTimeページ数を取得する開始日。
endDateDateTimeページ数を取得する終了日。

戻り値

レンダリングするページ数。

関連項目


GetPageCount(PageSize, Timescale)

指定されたものを使用してレンダリングされるプロジェクトのページ数を返しますTimescalePageSize.

public int GetPageCount(PageSize pageSize, Timescale scale)
パラメータタイプ説明
pageSizePageSizeページ数を取得するサイズ。
scaleTimescaleページ数を取得するスケール。

戻り値

レンダリングするページ数。

関連項目