Project.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)

返回要使用给定呈现的项目的页数Timescale,PresentationFormat和日期范围.

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获取页数的比例。

返回值

要呈现的页数。

也可以看看