FixedPageSaveOptions.NumeralFormat

FixedPageSaveOptions NumeralFormat property. Gets or sets FixedPageNumeralFormat used for rendering of numerals. European numerals are used by default.

FixedPageSaveOptions.NumeralFormat property

Gets or sets FixedPageNumeralFormat used for rendering of numerals. European numerals are used by default.

public FixedPageNumeralFormat NumeralFormat { get; set; }

Examples

Shows how to set the numeral format used when saving to XPS.

XpsSaveOptions xpsSaveOptions = new XpsSaveOptions();
xpsSaveOptions.NumeralFormat = FixedPageNumeralFormat.ArabicIndic;

Converter.Create()
    .From(MyDir + "Simple.docx")
    .To(ArtifactsDir + "FixedPageSaveOptions.NumeralFormat.xps", xpsSaveOptions)
    .Execute();

See Also