ApiExamples.ExRendering.SetPdfNumeralFormat C# (CSharp) Метод

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

private SetPdfNumeralFormat ( ) : void
Результат void
        public void SetPdfNumeralFormat()
        {
            Document doc = new Document(MyDir + "Rendering.NumeralFormat.doc");
            //ExStart
            //ExFor:PdfSaveOptions.NumeralFormat
            //ExSummary:Demonstrates how to set the numeral format used when saving to PDF.
            PdfSaveOptions options = new PdfSaveOptions();
            options.NumeralFormat = NumeralFormat.Context;
            //ExEnd

            doc.Save(MyDir + @"\Artifacts\Rendering.NumeralFormat.pdf", options);
        }
    }