private void OnOLParagraphCreated(object sender, ParagraphEventArgs args) { if (!isParagraphCreated) { if (args.Paragraph.ParagraphProperties == null) { args.Paragraph.ParagraphProperties = new ParagraphProperties(); } SetListProperties(numberFormat, args.Paragraph.ParagraphProperties); isParagraphCreated = true; } }
private void OnOLParagraphCreated(object sender, ParagraphEventArgs args) { if (!isParagraphCreated) { if (args.Paragraph.ParagraphProperties == null) { args.Paragraph.ParagraphProperties = new ParagraphProperties(); } SetListProperties(args.Paragraph.ParagraphProperties); isParagraphCreated = true; } else { DocxParagraphStyle.SetIndentation(args.Paragraph, (gLevelIndex + 1) * indent); } }