Round()
Contents
[
Hide
]Decimal::Round(const Decimal&, MidpointRounding) method
Rounds the specified value to the nearest integral number. A parameter specifies the function’s behavior if the specified value is equally close to two nearest numbers.
static Decimal System::Decimal::Round(const Decimal &d, MidpointRounding mode=MidpointRounding::ToEven)
Arguments
Parameter | Type | Description |
---|---|---|
d | const Decimal& | The value to round |
mode | MidpointRounding | Specifies how to perform the rounding if value is equally close to two nearest numbers. |
Return Value
d rounded to the nearest integral value
Decimal::Round(const Decimal&, int, MidpointRounding) method
Rounds the specified value to the nearest value with the specified number of fractional digits. A parameter specifies the function’s behavior if the specified value is equally close to two nearest numbers.
static Decimal System::Decimal::Round(const Decimal &d, int digits, MidpointRounding mode=MidpointRounding::ToEven)
Arguments
Parameter | Type | Description |
---|---|---|
d | const Decimal& | The value to round |
digits | int | The number of fractional digits in the rounded value |
mode | MidpointRounding | Specifies how to perform the rounding if value is equally close to two nearest numbers. |
Return Value
The number with the specified number of digits nearest to value
See Also
- Enum MidpointRounding
- Class Decimal
- Namespace System
- Library Aspose.Slides