TopicDisplayFormatOptions

data class TopicDisplayFormatOptions(val blankCellFormat: String? = null, val currencySymbol: String? = null, val dateFormat: String? = null, val decimalSeparator: TopicNumericSeparatorSymbol? = null, val fractionDigits: Double? = null, val groupingSeparator: String? = null, val negativeFormat: TopicNegativeFormat? = null, val prefix: String? = null, val suffix: String? = null, val unitScaler: TopicNumberScale? = null, val useBlankCellFormat: Boolean? = null, val useGrouping: Boolean? = null)

Constructors

Link copied to clipboard
constructor(blankCellFormat: String? = null, currencySymbol: String? = null, dateFormat: String? = null, decimalSeparator: TopicNumericSeparatorSymbol? = null, fractionDigits: Double? = null, groupingSeparator: String? = null, negativeFormat: TopicNegativeFormat? = null, prefix: String? = null, suffix: String? = null, unitScaler: TopicNumberScale? = null, useBlankCellFormat: Boolean? = null, useGrouping: Boolean? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val blankCellFormat: String? = null

Determines the blank cell format.

Link copied to clipboard
val currencySymbol: String? = null

The currency symbol, such as USD .

Link copied to clipboard
val dateFormat: String? = null

Determines the DateTime format.

Link copied to clipboard

Determines the decimal separator.

Link copied to clipboard
val fractionDigits: Double? = null

Determines the number of fraction digits.

Link copied to clipboard

Determines the grouping separator.

Link copied to clipboard

The negative format.

Link copied to clipboard
val prefix: String? = null

The prefix value for a display format.

Link copied to clipboard
val suffix: String? = null

The suffix value for a display format.

Link copied to clipboard

The unit scaler. Valid values for this structure are: NONE , AUTO , THOUSANDS , MILLIONS , BILLIONS , and TRILLIONS .

Link copied to clipboard

A Boolean value that indicates whether to use blank cell format.

Link copied to clipboard
val useGrouping: Boolean? = null

A Boolean value that indicates whether to use grouping.