Report.GetTotalPages 方法
返回报表中的软页总数。
命名空间: Microsoft.Reporting.WinForms
程序集: Microsoft.ReportViewer.WinForms(在 Microsoft.ReportViewer.WinForms.dll 中)
语法
声明
Public Function GetTotalPages As Integer
用法
Dim instance As Report
Dim returnValue As Integer
returnValue = instance.GetTotalPages()
public int GetTotalPages()
public:
int GetTotalPages()
member GetTotalPages : unit -> int
public function GetTotalPages() : int
返回值
类型:System.Int32
一个 integer 值,其中包含报表中的软页总数。有关软页的更多信息,请参见Understanding Rendering Behaviors。
注释
用于根据 Report 对象呈现报表的方式来生成总页数的页计数模式。如果报表是使用 Actual 模式呈现的,则 GetTotalPages 使用 Actual 页计数模式。如果报表是使用 Estimate 模式呈现的,则根据报表,GetTotalPages 可以使用 Actual 或 Estimate 模式。默认情况下,使用 Estimate 模式计算页计数。有关更多信息,请参见 PageCountMode 类和 Render 方法。
若要检索用于计算总页数的页计数模式,请使用 GetTotalPages。
当**“ReportViewer”**控件处于打印布局模式时,此方法始终使用 Actualpagecountmode。