- https://www.mathworks.com/help/rptgen/ug/mlreportgen.dom.pagebreakbefore-class.html
- https://www.mathworks.com/help/rptgen/ug/mlreportgen.dom.pagebreak-class.html
comment interdire aux lignes d'un tableau de s''imprimer sur 2 pages
2 ビュー (過去 30 日間)
古いコメントを表示
Bonjour,
J'utilise report generator pour mettre des tableaux de données dans un rapport word. (tableaux de données produit dans une autre application matlab).
parfois une ligne de tableau (trop haute) s'imprime sur 2 pages à suivre. je souhaite interdire cela avec donc un "saut de page" avant cette ligne.
ej pense qu'il faut utilisert la propriété (ou l'objet ?)
breakAcrossPagesObj = AllowBreakAcrossPages(tf) forces a row to start on the next page when it cannot fit on the current page and tf = false
mais je ne comprends pas comment ajouter cette propriété (ou objet) à mom tableau "dataTable" (ou format de tableau)
faut il écrire quel que chose comme :
dataTable.row.Style=[dataTable.row.Style,{AllowBreakAcrossPages('false')}]; (ne marche pas)
ou dataTable.Style=[dataTable.Style,{AllowBreakAcrossPages('false')}]; (ne marche pas)
ou dataTable.AllowBreakAcrossPages('false'); (ne marche pas)
il me faut un exemple qui marche de cette commande AllowBreakAcrossPages('false').
Merci
0 件のコメント
回答 (2 件)
Arka
2023 年 8 月 17 日
Hi Daniel,
The “PageBreak” or the “PageBreakBefore” classes available for the “MATLAB Report Generator” can be used to add a Page Break wherever needed.
You can go through the MathWorks documentation links below for “mlreportgen.dom.PageBreak” and “mlreportgen.dom.PageBreakBefore” to learn more about them:
Hope this helps.
Thank you.
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!