目录

可用方法

3.29.3. 可用方法

getPageCount

语 法: public int getPageCount()

功能说明: 返回分页后的总页数

Returns : 分页的总页数

调用举例: PageBuilder pb = new PageBuilder(iReport,600,800);

int totalPage

pb.getPageCount(); getPaget

语 法: public IReport getPage(int page) throws java.lang.Exception

参数说明: page-指定的页号

功能说明: 返回指定页所对应的报表对象

Returns : 指定页所对应的报表对象

调用举例: PageBuilder pb = new PageBuilder(iReport,600,800); iReport = pb.getPage(2);//取第二页的报表对象

getAllPages

语 法: public java.lang.Object[]

getAllPages() throws java.lang.Exception

功能说明: 获得分页后的报表对象集合

Returns : 分页后的所有页集合

调用举例: IReport[] pbs = pb.getAllPages();

getReport

语 法: public IReport getReport()

功能说明: 获得分页前的IReport对象

Returns : 分页前的IReport对象

调用举例: IReport iReport = pb. getReport ();

getPapersCount

语 法: public int

getPapersCount()

功能说明: 获得打印时的页数

Returns : 打印时的页数

调用举例: int printNum = pb.getPapersCount();