CurrencyFormatter.IsGrouped Property

Definition

Gets or sets whether the integer part of the currency value should be grouped. The default value is false.

public:
 property bool IsGrouped { bool get(); void set(bool value); };
bool IsGrouped();

void IsGrouped(bool value);
public bool IsGrouped { get; set; }
var boolean = currencyFormatter.isGrouped;
currencyFormatter.isGrouped = boolean;
Public Property IsGrouped As Boolean

Property Value

Boolean

bool

true if the integer part of the value should be grouped, otherwise false.

Implements

Remarks

The default value for this property is false. That's different from the behavior of currency formatting in .NET, where the default behavior is to group the integer part.

Applies to