Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Digging in xlwt's source code, it turns out <code>{vert,horiz}_page_breaks</code> are properties (see <code>Worksheet.py</code> in the source distribution) that end up being passed to <code>BIFFRecords.{Vertical,Horizontal}PageBreaksRecord</code> (see <code>BIFFRecords.py</code>). Those last two classes <em>are</em> documented. Here's the docs for them, in case you find them useful:</p> <pre><code>class HorizontalPageBreaksRecord(BiffRecord): """ This record is part of the Page Settings Block. It contains all horizontal manual page breaks. Record HORIZONTALPAGEBREAKS, BIFF8: Offset Size Contents 0 2 Number of following row index structures (nm) 2 6nm List of nm row index structures. Each row index structure contains: Offset Size Contents 0 2 Index to first row below the page break 2 2 Index to first column of this page break 4 2 Index to last column of this page break The row indexes in the lists must be ordered ascending. If in BIFF8 a row contains several page breaks, they must be ordered ascending by start column index. """ class VerticalPageBreaksRecord(BiffRecord): """ This record is part of the Page Settings Block. It contains all vertical manual page breaks. Record VERTICALPAGEBREAKS, BIFF8: Offset Size Contents 0 2 Number of following column index structures (nm) 2 6nm List of nm column index structures. Each column index structure contains: Offset Size Contents 0 2 Index to first column following the page break 2 2 Index to first row of this page break 4 2 Index to last row of this page break The column indexes in the lists must be ordered ascending. If in BIFF8 a column contains several page breaks, they must be ordered ascending by start row index. """ </code></pre>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload