PdfTableStyle.NumberFormatInfo Property

PDF File Writer

PdfTableStyleNumberFormatInfo Property

Gets or sets number format information.

Namespace:  PdfFileWriter
Assembly:  PdfFileWriter (in PdfFileWriter.dll) Version: 1.1.24.0 (1.1.24.0)
Syntax
C#
public NumberFormatInfo NumberFormatInfo { get; set; }

Property Value

Type: NumberFormatInfo
Remarks

All basic numeric values are converted to string using:

Value.ToString(Format, NumberFormatInfo);

The NumberFormatInfo allows for regional formatting.

Both Format and NumberFormatInfo are set to null by default. In other words by default the conversion is:

Value.ToString();
See Also