Class CurrencyFormatStringInfo
Contains configuration for currency format strings, including decimal precision, currency symbol, and format pattern variations.
Inheritance
Inherited Members
Namespace: Telerik.Windows.Documents.Spreadsheet.Formatting.FormatStrings.Infos
Assembly: Telerik.Windows.Documents.Spreadsheet.dll
Syntax
public class CurrencyFormatStringInfo : ICategorizedFormatStringInfo
Constructors
CurrencyFormatStringInfo(Int32, CurrencyInfo, IEnumerable<String>)
Initializes a new instance of the CurrencyFormatStringInfo class with specified decimal precision, currency, and format pattern variations.
Declaration
public CurrencyFormatStringInfo(int decimalPlaces, CurrencyInfo currencyInfo, IEnumerable<string> formatStrings)
Parameters
|
System.Int32
decimalPlaces
The decimal places. |
|
CurrencyInfo
currencyInfo
The currency info. |
|
System.Collections.Generic.IEnumerable<System.String>
formatStrings
The format strings. |
Properties
CurrencyInfo
Currency information including symbol and culture for this format.
Declaration
public CurrencyInfo CurrencyInfo { get; }
Property Value
|
CurrencyInfo
The currency info. |
DecimalPlaces
Number of decimal places to display in the formatted value.
Declaration
public int DecimalPlaces { get; }
Property Value
|
System.Int32
The decimal places. |
FormatStrings
Collection of format string patterns for different numeric scenarios (positive, negative, zero).
Declaration
public IList<string> FormatStrings { get; }
Property Value
|
System.Collections.Generic.IList<System.String>
The format strings. |