diff --git a/visio/model/ooxmlApi/convertFunctions.js b/visio/model/ooxmlApi/convertFunctions.js index 43a460c055..81deb5e10c 100644 --- a/visio/model/ooxmlApi/convertFunctions.js +++ b/visio/model/ooxmlApi/convertFunctions.js @@ -420,6 +420,9 @@ bulletFont = "Wingdings"; } + let indentationLeftCell = paragraphPropsFinal && paragraphPropsFinal.getCell("IndLeft"); + let indentationLeft = indentationLeftCell.getNumberValue() * AscCommonWord.g_dKoef_in_to_mm; + // create new paragraph to hold new properties @@ -461,6 +464,8 @@ // Bullet.bulletType.type = AscFormat.BULLET_TYPE_BULLET_AUTONUM; // paragraph.Add_PresentationNumbering(Bullet); + paragraph.Pr.Ind.Left = indentationLeft; + oContent.Content.push(paragraph); paragraph.SetParent(oContent);