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

Добавлен класс для работы со стилями (добавление/удаление/модифицирование)....

Добавлен класс для работы со стилями (добавление/удаление/модифицирование). Добавлены 3 функции: для получения данного класса по выделенному тексту, для добавления/модифицирования стиля и для удаления стиля по имени.

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@62749 954022d7-b5bf-4e40-9824-e11837661b57
parent a33bf6e7
......@@ -14493,6 +14493,20 @@ CDocument.prototype.Is_TrackingDrawingObjects = function()
{
return this.DrawingObjects.Check_TrackObjects();
};
/*
* Получаем стиль по выделенному фрагменту.
*/
CDocument.prototype.Get_StyleFromFormatting = function()
{
return new CStyleProp();
};
/*
* Добавляем новый стиль (или заменяем старый с таким же названием).
*/
CDocument.prototype.Add_NewStyle = function(oStyle)
{
};
//-----------------------------------------------------------------------------------
//
......
......@@ -7437,6 +7437,33 @@ asc_docs_api.prototype.asc_GetMailMergeFiledValue = function(nIndex, sName)
{
return this.WordControl.m_oLogicDocument.Get_MailMergeFileldValue(nIndex, sName);
};
//----------------------------------------------------------------------------------------------------------------------
// Работаем со стилями
//----------------------------------------------------------------------------------------------------------------------
function asc_CStyle()
{
this.Name = "";
};
asc_CStyle.prototype.get_Name = function()
{
return this.Name;
};
asc_CStyle.prototype.put_Name = function(sName)
{
this.Name = sName;
};
asc_docs_api.prototype.asc_GetStyleFromFormatting = function()
{
this.WordControl.m_oLogicDocument.Get_StyleFromFormatting();
};
asc_docs_api.prototype.asc_AddNewStyle = function(oStyle)
{
this.WordControl.m_oLogicDocument.Add_NewStyle(oStyle);
};
asc_docs_api.prototype.asc_RemoveStyle = function(sName)
{
};
asc_docs_api.prototype.asc_stopSaving = function () {
this.waitSave = true;
};
......
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