FormatInfoBaseDataFormat Property |
Gets or sets a .NET format string defining how to display the number.
Namespace:
Dundas.BI.WebApi.Models
Assembly:
Dundas.BI.WebApi (in Dundas.BI.WebApi.dll) Version: 2.0.0.0 (10.0.0.1002)
Syntax[DataMemberAttribute(EmitDefaultValue = false, Name = "format")]
public string Format { get; set; }<DataMemberAttribute(EmitDefaultValue := false, Name := "format")>
Public Property Format As String
Get
Set
public:
[DataMemberAttribute(EmitDefaultValue = false, Name = L"format")]
property String^ Format {
String^ get ();
void set (String^ value);
}[<DataMemberAttribute(EmitDefaultValue = false, Name = "format")>]
member Format : string with get, set
Property Value
Type:
String
RemarksSome of the supported values are:
N - Numeric, shows the thousands separator
C - Currency, shows negatives in parentheses and position a currency symbol
P - Percentage, multiplies by 100 and displays percentage symbol
E - Exponential notation
To specify precision, add the number of digits after the symbol.
See Also