Share via


TBoundProperty.bool operator>=(TBoundProperty&) (Compact 2013)

3/28/2014

The >= overloaded operator determines whether the value contained in a TBoundProperty<PropertyType> object is greater than or equal to a value in another TBoundProperty<PropertyType> object in a C++ expression.

Syntax

bool operator>=(
TBoundProperty & value)

Parameters

Return Value

Returns true if the operand on the left is greater than or equal to the operand on the right. Otherwise, returns false.

Remarks

TBoundProperty<PropertyType> uses the operator>= function when you use the >= operator in a C++ expression with TBoundProperty<PropertyType> values as the operands on the left and right sides.

Requirements

Header

XRPropertyBag.h

See Also

Reference

C++ Overloaded Operators for TBoundProperty<PropertyType>
TBoundProperty.operator>(TBoundProperty&)
TBoundProperty<PropertyType>