Interface CfnAnalysis.INumberDisplayFormatConfigurationProperty
The options that determine the number display format configuration.
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface INumberDisplayFormatConfigurationProperty
Syntax (vb)
Public Interface INumberDisplayFormatConfigurationProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.QuickSight;
var numberDisplayFormatConfigurationProperty = new NumberDisplayFormatConfigurationProperty {
DecimalPlacesConfiguration = new DecimalPlacesConfigurationProperty {
DecimalPlaces = 123
},
NegativeValueConfiguration = new NegativeValueConfigurationProperty {
DisplayMode = "displayMode"
},
NullValueFormatConfiguration = new NullValueFormatConfigurationProperty {
NullString = "nullString"
},
NumberScale = "numberScale",
Prefix = "prefix",
SeparatorConfiguration = new NumericSeparatorConfigurationProperty {
DecimalSeparator = "decimalSeparator",
ThousandsSeparator = new ThousandSeparatorOptionsProperty {
Symbol = "symbol",
Visibility = "visibility"
}
},
Suffix = "suffix"
};
Synopsis
Properties
Decimal |
The option that determines the decimal places configuration. |
Negative |
The options that determine the negative value configuration. |
Null |
The options that determine the null value format configuration. |
Number |
Determines the number scale value of the number format. |
Prefix | Determines the prefix value of the number format. |
Separator |
The options that determine the numeric separator configuration. |
Suffix | Determines the suffix value of the number format. |
Properties
DecimalPlacesConfiguration
The option that determines the decimal places configuration.
virtual object DecimalPlacesConfiguration { get; }
Property Value
System.
Remarks
NegativeValueConfiguration
The options that determine the negative value configuration.
virtual object NegativeValueConfiguration { get; }
Property Value
System.
Remarks
NullValueFormatConfiguration
The options that determine the null value format configuration.
virtual object NullValueFormatConfiguration { get; }
Property Value
System.
Remarks
NumberScale
Determines the number scale value of the number format.
virtual string NumberScale { get; }
Property Value
System.
Remarks
Prefix
Determines the prefix value of the number format.
virtual string Prefix { get; }
Property Value
System.
Remarks
SeparatorConfiguration
The options that determine the numeric separator configuration.
virtual object SeparatorConfiguration { get; }
Property Value
System.
Remarks
Suffix
Determines the suffix value of the number format.
virtual string Suffix { get; }
Property Value
System.