From 559fb0e8a03276dc2cba694c6eb128bf91a3060b Mon Sep 17 00:00:00 2001 From: vderyushev Date: Mon, 7 Oct 2024 13:49:59 +0300 Subject: [PATCH] Fixed names --- .../Working with Document/Join and append documents.cs | 2 +- .../Programming with Documents/Working with List.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Examples/DocsExamples/DocsExamples/Programming with Documents/Working with Document/Join and append documents.cs b/Examples/DocsExamples/DocsExamples/Programming with Documents/Working with Document/Join and append documents.cs index b37fdd5b..ed986d59 100644 --- a/Examples/DocsExamples/DocsExamples/Programming with Documents/Working with Document/Join and append documents.cs +++ b/Examples/DocsExamples/DocsExamples/Programming with Documents/Working with Document/Join and append documents.cs @@ -485,7 +485,7 @@ public void SmartStyleBehavior() builder.InsertDocument(srcDoc, ImportFormatMode.KeepSourceFormatting, options); - dstDoc.Save(ArtifactsDir + "DocumentBuilder.SmartStyleBehavior.docx"); + dstDoc.Save(ArtifactsDir + "JoinAndAppendDocuments.SmartStyleBehavior.docx"); //ExEnd:SmartStyleBehavior } diff --git a/Examples/DocsExamples/DocsExamples/Programming with Documents/Working with List.cs b/Examples/DocsExamples/DocsExamples/Programming with Documents/Working with List.cs index aba3015a..9fafafee 100644 --- a/Examples/DocsExamples/DocsExamples/Programming with Documents/Working with List.cs +++ b/Examples/DocsExamples/DocsExamples/Programming with Documents/Working with List.cs @@ -36,7 +36,7 @@ public void RestartListAtEachSection() builder.Writeln("List item 3"); builder.Writeln("List item 4"); - doc.Save(ArtifactsDir + "OoxmlSaveOptions.RestartingDocumentList.docx", options); + doc.Save(ArtifactsDir + "WorkingWithList.RestartingDocumentList.docx", options); //ExEnd:RestartListAtEachSection }