ApiExamples.ExDocumentBuilder.DocumentBuilderAndSave C# (CSharp) Метод

DocumentBuilderAndSave() приватный Метод

private DocumentBuilderAndSave ( ) : void
Результат void
        public void DocumentBuilderAndSave()
        {
            //ExStart
            //ExId:DocumentBuilderAndSave
            //ExSummary:Shows how to create build a document using a document builder.
            Document doc = new Document();
            DocumentBuilder builder = new DocumentBuilder(doc);

            builder.Writeln("Hello World!");

            doc.Save(MyDir + @"\Artifacts\DocumentBuilderAndSave.docx");
            //ExEnd
        }
ExDocumentBuilder