System::Decimal::operator<= method
Contents
[
Hide
]Decimal::operator<= method
Determines if the value represented by the current object is less than or equal to the value represented by the specified object.
bool System::Decimal::operator<=(const Decimal &d) const
Parameter | Type | Description |
---|---|---|
d | const Decimal& | The Decimal object to compare the current object with |
ReturnValue
True if the value represented by the current object is less than or equal to the value represented by d, otherwise - false
See Also
- Class Decimal
- Class Decimal
- Namespace System
- Library Aspose.Font for C++
title: System::Decimal::operator>= method linktitle: operator>= second_title: Aspose.Font for C++ description: ‘System::Decimal::operator>= method. Determines if the value represented by the current object is greater than or equal to the value represented by the specified object in C++.’ type: docs weight: 1700 url: /cpp/system/decimal/operator_=/
Decimal::operator>= method
Determines if the value represented by the current object is greater than or equal to the value represented by the specified object.
bool System::Decimal::operator>=(const Decimal &d) const
Parameter | Type | Description |
---|---|---|
d | const Decimal& | The Decimal object to compare the current object with |
ReturnValue
True if the value represented by the current object is greater than or equal to the value represented by d, otherwise - false
See Also
- Class Decimal
- Class Decimal
- Namespace System
- Library Aspose.Font for C++
title: System::Decimal::operator*= method linktitle: operator*= second_title: Aspose.Font for C++ description: ‘System::Decimal::operator*= method. Assigns to the current object a new value that is the result of multiplication of values represented by the current and specified objects in C++.’ type: docs weight: 2200 url: /cpp/system/decimal/operator_=/
Decimal::operator*= method
Assigns to the current object a new value that is the result of multiplication of values represented by the current and specified objects.
Decimal & System::Decimal::operator*=(const Decimal &d)
Parameter | Type | Description |
---|---|---|
d | const Decimal& | The Decimal object representing the multiplier |
ReturnValue
A reference to the self
See Also
- Class Decimal
- Class Decimal
- Namespace System
- Library Aspose.Font for C++