Share via


TBoundProperty.operator<=(PropertyType&) (Compact 2013)

3/28/2014

The <= overloaded operator determines whether a value contained in a TBoundProperty<PropertyType> object is less 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 operand on the left is less than or equal to 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.bool operator<(PropertyType&)
TBoundProperty<PropertyType>