We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, I've tried to use the same format as PHPExcel:
$writer->getActiveSheet()->setBreak( 'A15', PHPExcel_Worksheet::BREAK_ROW );
but then I realized there's no "getActiveSheet" neither "setBreak" code inside xlsxwriter.class.php. Is there any way to accomplish that?
Thanks!
The text was updated successfully, but these errors were encountered:
Ok, I've found that editing the XML I can set manually the page breaks
Under line 319 $sheet->file_writer->write( '</headerFooter>');
$sheet->file_writer->write( '</headerFooter>');
I can add this: $sheet->file_writer->write( '<rowBreaks count="1" manualBreakCount="1">'); $sheet->file_writer->write( '<brk id="8" max="16383" man="1"/>'); $sheet->file_writer->write( '</rowBreaks>');
$sheet->file_writer->write( '<rowBreaks count="1" manualBreakCount="1">'); $sheet->file_writer->write( '<brk id="8" max="16383" man="1"/>'); $sheet->file_writer->write( '</rowBreaks>');
And the file is created with a row break below row 8.
Any ideas on how to add a function to recreate this behavior?
Sorry, something went wrong.
No branches or pull requests
Hi, I've tried to use the same format as PHPExcel:
$writer->getActiveSheet()->setBreak( 'A15', PHPExcel_Worksheet::BREAK_ROW );
but then I realized there's no "getActiveSheet" neither "setBreak" code inside xlsxwriter.class.php. Is there any way to accomplish that?
Thanks!
The text was updated successfully, but these errors were encountered: