TBoundProperty.bool operator>=(PropertyType&) (Compact 7)
3/12/2014
The >= operator determines whether a value contained in a TBoundProperty<PropertyType> object is greater than or equal to another PropertyType value in a C++ expression.
Syntax
bool operator>=(
PropertyType&
value)
Parameters
- value
[in] Pointer to a PropertyType value that is the operand on the right in a C++ expression.
Return Value
Returns true if the value of the operand on the left is greater than or equal to the value of the operand on the right. Otherwise, returns false.
Remarks
The PropertyType data type is defined in the inherited PropertyType template parameter of TBoundProperty<PropertyType>.
Requirements
Header |
XRPropertyBag.h |
See Also
Reference
C++ Overloaded Operators for PropertyType
TBoundProperty.operator>(PropertyType&)
TBoundProperty<PropertyType>