Commit 5b3c6224 authored by Ilya.Kirillov's avatar Ilya.Kirillov Committed by Alexander.Trofimov

Добавлена функция для влючения/отключение проверки орфографии.

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@56268 954022d7-b5bf-4e40-9824-e11837661b57
parent ea15cdde
......@@ -2549,6 +2549,16 @@ asc_docs_api.prototype.UpdateParagraphProp = function(ParaPr)
}
}
}
if ( undefined !== ParaPr.FramePr && undefined !== ParaPr.FramePr.Wrap )
{
if ( wrap_NotBeside === ParaPr.FramePr.Wrap )
ParaPr.FramePr.Wrap = false;
else if ( wrap_Around === ParaPr.FramePr.Wrap )
ParaPr.FramePr.Wrap = true;
else
ParaPr.FramePr.Wrap = undefined;
}
this.sync_ParaSpacingLine( ParaPr.Spacing );
this.Update_ParaInd(ParaPr.Ind);
......@@ -5616,6 +5626,10 @@ asc_docs_api.prototype.asc_getDefaultLanguage = function()
return editor.WordControl.m_oLogicDocument.Get_DefaultLanguage();
return null;
}
asc_docs_api.prototype.asc_setSpellCheck = function(isOn)
{
}
//-----------------------------------------------------------------
// Функции для работы с комментариями
//-----------------------------------------------------------------
......
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