Commit 3793ec5c authored by Sergey.Konovalov's avatar Sergey.Konovalov Committed by Alexander.Trofimov

в xlsx не сохраняются скрытые столбцы.

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@52013 954022d7-b5bf-4e40-9824-e11837661b57
parent ac19b0dd
......@@ -2383,11 +2383,11 @@ function BinaryWorksheetsTableWriter(memory, wb, oSharedStrings, aDxfs, aXfs, aF
this.memory.WriteByte(c_oSerPropLenType.Byte);
this.memory.WriteBool(oCol.BestFit);
}
if(null != oCol.Hidden)
if(null != oCol.hd)
{
this.memory.WriteByte(c_oSerWorksheetColTypes.Hidden);
this.memory.WriteByte(c_oSerPropLenType.Byte);
this.memory.WriteBool(oCol.Hidden);
this.memory.WriteBool(oCol.hd);
}
if(null != oCol.Max)
{
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment