Commit 13312006 authored by Sergey.Konovalov's avatar Sergey.Konovalov

(2.0.0.249): ASCOfficeDocxFile2

Bug 27824 - [Docx] После выгрузки документа Word 2013 не открывает документ.

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@59996 954022d7-b5bf-4e40-9824-e11837661b57
parent 041ba481
......@@ -7949,19 +7949,19 @@ function Binary_DocumentTableReader(doc, oReadResult, openParams, stream, bAllow
oParaDrawing.Set_BehindDoc(this.stream.GetBool());
else if( c_oSerImageType2.DistL === type )
{
oParaDrawing.Set_Distance(this.bcr.ReadDouble(), null, null, null);
oParaDrawing.Set_Distance(Math.abs(this.bcr.ReadDouble()), null, null, null);
}
else if( c_oSerImageType2.DistT === type )
{
oParaDrawing.Set_Distance(null, this.bcr.ReadDouble(), null, null);
oParaDrawing.Set_Distance(null, Math.abs(this.bcr.ReadDouble()), null, null);
}
else if( c_oSerImageType2.DistR === type )
{
oParaDrawing.Set_Distance(null, null, this.bcr.ReadDouble(), null);
oParaDrawing.Set_Distance(null, null, Math.abs(this.bcr.ReadDouble()), null);
}
else if( c_oSerImageType2.DistB === type )
{
oParaDrawing.Set_Distance(null, null, null, this.bcr.ReadDouble());
oParaDrawing.Set_Distance(null, null, null, Math.abs(this.bcr.ReadDouble()));
}
else if( c_oSerImageType2.Hidden === type )
var Hidden = this.stream.GetBool();
......
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