Contains configuration for accounting format strings, including decimal precision and currency symbol.
Definition
Namespace:Telerik.Windows.Documents.Spreadsheet.Formatting.FormatStrings.Infos
Assembly:Telerik.Windows.Documents.Spreadsheet.dll
Syntax:
C#
public class AccountingFormatStringInfo : ICategorizedFormatStringInfo
Inheritance: objectAccountingFormatStringInfo
Implements:
Constructors
Initializes a new instance of the AccountingFormatStringInfo class with specified decimal precision, currency, and format pattern.
C#
public AccountingFormatStringInfo(int decimalPlaces, CurrencyInfo currencyInfo, string formatString)
The decimal places.
currencyInfoCurrencyInfoThe currency info.
formatStringstringThe format string.
Properties
Currency information including symbol and culture for this accounting format.
C#
public CurrencyInfo CurrencyInfo { get; }
The currency info.
Number of decimal places to display in the formatted value.
C#
public int DecimalPlaces { get; }
The decimal places.
Full format string pattern used to format accounting values.
C#
public string FormatString { get; }
The format string.