Czy ktoś może mi pomóc w dodawaniu wstępnie zdefiniowanych stylów w paragrafie przy użyciu otwartego przetwarzania XML Word? Próbowałem różnych rozwiązań dostępnych na forach, ale nic nie działa dla mnie. Oto, co chcę osiągnąć:OpenXML Dodaj styl akapitowy (Nagłówek1, Nagłówek2, Głowa 3 Etc) do dokumentu edytora tekstu
// Create a document by supplying the filepath.
WordprocessingDocument wordDocument = WordprocessingDocument.Create("E:/Test/Executive.Docx", WordprocessingDocumentType.Document);
// Add a main document part.
MainDocumentPart mainPart = wordDocument.AddMainDocumentPart();
// Create the document structure and add some text.
mainPart.Document = new Document();
Body body = mainPart.Document.AppendChild(new Body());
Paragraph para = body.AppendChild(new Paragraph());
Run run = para.AppendChild(new Run());
run.AppendChild(new Text("Executive Summary"));
if (para.Elements<ParagraphProperties>().Count() == 0)
para.PrependChild<ParagraphProperties>(new ParagraphProperties());
// Get the ParagraphProperties element of the paragraph.
ParagraphProperties pPr = para.Elements<ParagraphProperties>().First();
// Set the value of ParagraphStyleId to "Heading3".
pPr.ParagraphStyleId = new ParagraphStyleId() { Val = "Heading1" };
Element StyleDefinitionPart powinien być StyleDefinitionsPart –