PdfTableStyle.Format Property

PDF File Writer

PdfTableStyleFormat Property

Gets or sets format string.

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

Property Value

Type: String
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