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

CharSpacing

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@58157 954022d7-b5bf-4e40-9824-e11837661b57
parent f9751d84
......@@ -1091,6 +1091,12 @@ asc_docs_api.prototype["Call_Menu_Event"] = function(type, _params)
case 12:
{
_textPr.HighLight = highlight_None;
break;
}
case 13:
{
_textPr.Spacing = _params[_current.pos++];
break;
}
case 255:
default:
......@@ -3982,6 +3988,11 @@ asc_docs_api.prototype.UpdateTextPr = function(TextPr)
_stream["WriteByte"](11);
_stream["WriteBool"](TextPr.SmallCaps);
}
if (TextPr.Spacing !== undefined)
{
_stream["WriteByte"](13);
_stream["WriteDouble2"](TextPr.Spacing);
}
_stream["WriteByte"](255);
......
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