Commit 72e1c7fa authored by Ilya Kirillov's avatar Ilya Kirillov

Added functions for getting new default styles for footnotes.

parent 1b921a09
...@@ -4233,36 +4233,39 @@ function CStyles(bCreateDefault) ...@@ -4233,36 +4233,39 @@ function CStyles(bCreateDefault)
// Добавляем данный класс в таблицу Id (обязательно в конце конструктора) // Добавляем данный класс в таблицу Id (обязательно в конце конструктора)
g_oTableId.Add( this, this.Id ); g_oTableId.Add( this, this.Id );
} }
else else
{ {
this.Default = this.Default = {
{ ParaPr : new CParaPr(),
ParaPr : new CParaPr(), TextPr : new CTextPr(),
TextPr : new CTextPr(), TablePr : new CTablePr(),
TablePr : new CTablePr(), TableRowPr : new CTableRowPr(),
TableRowPr : new CTableRowPr(), TableCellPr : new CTableCellPr(),
TableCellPr : new CTableCellPr(),
Paragraph : null,
Character : null,
Numbering : null,
Table : null,
TableGrid : null,
Headings : [],
ParaList : null,
Header : null,
Footer : null,
Hyperlink : null
};
// Заполняем значения по умолчанию Paragraph : null,
this.Default.ParaPr.Init_Default(); Character : null,
this.Default.TextPr.Init_Default(); Numbering : null,
this.Default.TablePr.Init_Default(); Table : null,
this.Default.TableRowPr.Init_Default(); TableGrid : null,
this.Default.TableCellPr.Init_Default(); Headings : [],
ParaList : null,
Header : null,
Footer : null,
Hyperlink : null,
FootnoteText : null,
FootnoteTextChar : null,
FootnoteReference : null
};
this.Style = []; // Заполняем значения по умолчанию
} this.Default.ParaPr.Init_Default();
this.Default.TextPr.Init_Default();
this.Default.TablePr.Init_Default();
this.Default.TableRowPr.Init_Default();
this.Default.TableCellPr.Init_Default();
this.Style = [];
}
this.LogicDocument = null; this.LogicDocument = null;
} }
...@@ -5191,6 +5194,18 @@ CStyles.prototype = ...@@ -5191,6 +5194,18 @@ CStyles.prototype =
} }
} }
}; };
CStyles.prototype.GetDefaultFootnoteText = function()
{
return this.Default.FootnoteText;
};
CStyles.prototype.GetDefaultFootnoteTextChar = function()
{
return this.Default.FootnoteTextChar;
};
CStyles.prototype.GetDefaultFootnoteReference = function()
{
return this.Default.FootnoteReference;
};
function CDocumentColor(r,g,b, Auto) function CDocumentColor(r,g,b, Auto)
{ {
......
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