Add overload function for setRow and setColumn

This commit is contained in:
Debao Zhang
2013-10-31 12:19:48 +08:00
parent 93e1661aac
commit 27c0029df1
7 changed files with 94 additions and 20 deletions
+4 -4
View File
@@ -135,13 +135,13 @@ struct XlsxRowInfo
struct XlsxColumnInfo
{
XlsxColumnInfo(int column_min=0, int column_max=1, double width=0, Format *format=0, bool hidden=false) :
column_min(column_min), column_max(column_max), width(width), format(format), hidden(hidden)
XlsxColumnInfo(int firstColumn=0, int lastColumn=1, double width=0, Format *format=0, bool hidden=false) :
firstColumn(firstColumn), lastColumn(lastColumn), width(width), format(format), hidden(hidden)
{
}
int column_min;
int column_max;
int firstColumn;
int lastColumn;
double width;
Format *format;
bool hidden;