Hi, i might be wrong about this.
I tried creating a row page break in EPPLUS and it looks like this in XML:
<x:rowBreaks count="2" manualBreakCount="2" xmlns:x="http://schemas.openxmlformats.org/spreadsheetml/2006/main">
<x:brk id="11" max="1048575" man="1" />
<x:brk id="25" max="1048575" man="1" />
</x:rowBreaks>
But when i created a row page break in Excel Application it looks like this XML:
<x:rowBreaks count="2" manualBreakCount="2" xmlns:x="http://schemas.openxmlformats.org/spreadsheetml/2006/main">
<x:brk id="4" max="16383" man="1" />
<x:brk id="11" max="16383" man="1" />
</x:rowBreaks>
the 'max' values are different. now i tried converting the EPPLUS generated file using syncfusions' Excel to PDF converter and i encountered the error 'the value was either too large or too small for a UInt16'.
Any thoughts? i may be wrong.
Comments: Update: syncfusion had already made changes to their excel api as per request and both libraries now play well. if this is not a STANDARDS issue then consider this WorkItem closed.
I tried creating a row page break in EPPLUS and it looks like this in XML:
<x:rowBreaks count="2" manualBreakCount="2" xmlns:x="http://schemas.openxmlformats.org/spreadsheetml/2006/main">
<x:brk id="11" max="1048575" man="1" />
<x:brk id="25" max="1048575" man="1" />
</x:rowBreaks>
But when i created a row page break in Excel Application it looks like this XML:
<x:rowBreaks count="2" manualBreakCount="2" xmlns:x="http://schemas.openxmlformats.org/spreadsheetml/2006/main">
<x:brk id="4" max="16383" man="1" />
<x:brk id="11" max="16383" man="1" />
</x:rowBreaks>
the 'max' values are different. now i tried converting the EPPLUS generated file using syncfusions' Excel to PDF converter and i encountered the error 'the value was either too large or too small for a UInt16'.
Any thoughts? i may be wrong.
Comments: Update: syncfusion had already made changes to their excel api as per request and both libraries now play well. if this is not a STANDARDS issue then consider this WorkItem closed.