protected void OnParagraphCreated(DocxNode node, Paragraph para) { DocxParagraphStyle style = new DocxParagraphStyle(); style.Process(para, node); ParagraphCreated?.Invoke(this, new ParagraphEventArgs(para)); }
protected void OnParagraphCreated(DocxNode node, Paragraph para) { DocxParagraphStyle style = new DocxParagraphStyle(); style.Process(para, node); if (ParagraphCreated != null) { ParagraphCreated(this, new ParagraphEventArgs(para)); } }