how to do a page break in Programmatic Report Creation
조회 수: 3 (최근 30일)
이전 댓글 표시
Hello every body !!
I have done an automatic report but need to jump to next page before some data. I have read about mlreportgen.dom.PageBreakBefore class but it doesn't work as i want.
I want to start in a new page the new chapter, I tried this:
head1 = Heading( 1 ) ;
append(myReport,head1);
append(head1,['Chapter X'], 'Title');
head1.WhiteSpace = 'pre';
head1.Style={PageBreakBefore(1)};
but not working... :(
Someone, any ideas ? Thanks in advance !!
댓글 수: 0
답변 (2개)
Sean de Wolski
2015년 7월 24일
편집: Sean de Wolski
2015년 7월 24일
You append-ed head1 before adding the Pagebreak. You'll need to re- append it after or wait to append until it's in the ready state.
댓글 수: 0
Paul Kinnucan
2016년 5월 12일
It’s possible that the reason that the page break does not work is that the report is running in streaming mode, which means that the heading is output to the report before the page break format is set.
Also, please note that the line that assigns the PageBreakBefore format to the heading's Style property inadvertently wipes out the heading’s preexisting OutlineLevel and WhiteSpace formats.
The following script should work for both stream and in-memory mode:
head1 = Heading(1) ;
append(head1,['Chapter X'], 'Title');
head1.WhiteSpace = 'pre';
head1.Style=[head1.Style, {PageBreakBefore(1)}]; % Preserve the existing formats
append(myReport,head1); % Safest to append the headingafter setting its properties
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Title Pages, Tables of Contents, Lists of Figures, Tables, and Captions에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!