Commit 146b4ec5 authored by SergeyLuzyanin's avatar SergeyLuzyanin

fix Bug 32467 - Невозможно изменить форматирование текста в заголовке...

fix Bug 32467 - Невозможно изменить форматирование текста в заголовке диаграммы при открытии XLSX книги
parent 76a1e9d7
...@@ -440,6 +440,11 @@ function checkPointInMap(map, worksheet, row, col) ...@@ -440,6 +440,11 @@ function checkPointInMap(map, worksheet, row, col)
{ {
CheckParagraphTextPr(aContent[i], oTextPr); CheckParagraphTextPr(aContent[i], oTextPr);
} }
oElement.tx.rich.content.Set_ApplyToAll(true);
var oParTextPr = new AscCommonWord.ParaTextPr(oTextPr);
oElement.tx.rich.content.Paragraph_Add(oParTextPr);
oElement.tx.rich.content.Set_ApplyToAll(false);
} }
CheckParagraphTextPr(oElement.txPr.content.Content[0], oTextPr); CheckParagraphTextPr(oElement.txPr.content.Content[0], oTextPr);
} }
......
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