Commit 31ca546a authored by Oleg.Korshul's avatar Oleg.Korshul Committed by Alexander.Trofimov

git-svn-id:...

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@48835 954022d7-b5bf-4e40-9824-e11837661b57
parent 7e3435c0
...@@ -1741,6 +1741,18 @@ function CDrawingDocument() ...@@ -1741,6 +1741,18 @@ function CDrawingDocument()
} }
} }
this.CheckFontNeeds = function()
{
var map_keys = this.m_oWordControl.m_oLogicDocument.Document_Get_AllFontNames();
var dstfonts = new Array();
for (var i in map_keys)
{
dstfonts[dstfonts.length] = new CFont(i, 0, "", 0, null);
}
this.m_oWordControl.m_oLogicDocument.Fonts = dstfonts;
return;
}
// вот здесь весь трекинг // вот здесь весь трекинг
this.DrawTrack = function(type, matrix, left, top, width, height, isLine) this.DrawTrack = function(type, matrix, left, top, width, height, isLine)
{ {
......
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