TBoundProperty<BSTR>.operator>=(TBoundProperty&) (Compact 7)
3/12/2014
The >= overloaded operator determines whether the string contained in a TBoundProperty<BSTR> object is greater than or equal to a string in another TBoundProperty<BSTR> object in a C++ expression.
Syntax
bool operator>=(
TBoundProperty & value)
Parameters
- value
[in] Pointer to a TBoundProperty<BSTR> object that is the operand on the right in a C++ expression.
Return Value
Returns true if the operand on the left is lexicographically greater than or equal to the operand on the right in a C++ expression. Otherwise, returns false.
Remarks
In a lexicographical comparison, if one string has more characters than the other, the shorter string is considered to be less than the longer string.
Requirements
Header |
oleauto.h, |
Library |
oleaut32.lib |
See Also
Reference
C++ Overloaded Operators for TBoundProperty<BSTR>
TBoundProperty<BSTR>.operator>(TBoundProperty&)
TBoundProperty<BSTR>