Replies: 2 comments
-
Dear @SergeyZaz Sorry for late reply. Thank you for your good opinion. I will make new branch for your opinion(later). 😃 |
Beta Was this translation helpful? Give feedback.
0 replies
-
Fixed by commit |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello! I didn't find a way to freeze rows and columns. I did it myself, please add it to the repository.
in xlsxabstractsheet.h
`
QVector getFullCells(int* maxRow, int* maxCol);
private:
`
in xlsxabstractsheet_p.h
`
int outline_col_level;
`
in xlsxworksheet.cpp
`
default_row_zeroed = false;
}
writer.writeAttribute(QStringLiteral("workbookViewId"), QStringLiteral("0"));
//{{ liufeijin
bool Worksheet::setStartPage(int spagen)
{
Q_D(Worksheet);
}
//}}
///////////////////////// ZAZ: fix(freeze) rows and columns! /////////////////////////
void Worksheet::setFrozenRows(int rows)
{
Q_D(Worksheet);
}
void Worksheet::setFrozenColumns(int cols)
{
Q_D(Worksheet);
d->frozen_cols=cols;
}
`
Beta Was this translation helpful? Give feedback.
All reactions