ApiExamples.ExPdfSaveOptions.DrawingMl C# (CSharp) Метод

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

private DrawingMl ( ) : void
Результат void
        public void DrawingMl()
        {
            Document doc = DocumentHelper.CreateDocumentFillWithDummyText();

            PdfSaveOptions pdfSaveOptions = new PdfSaveOptions();
            pdfSaveOptions.DmlRenderingMode = DmlRenderingMode.DrawingML;

            doc.Save(MyDir + @"\Artifacts\DrawingMl.pdf", pdfSaveOptions);
        }