Share via


TBoundProperty<BSTR>.operator>=(BSTR) (Compact 2013)

3/28/2014

The >= overloaded operator determines whether a binary string in a TBoundProperty<BSTR> object is greater than or equal to another binary string in a C++ expression.

Syntax

bool operator>=(
BSTR value)

Parameters

  • value
    [in] Binary string 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. Otherwise, returns false.

Remarks

In a lexicographic comparison, if a string has more characters than another string, the longer string is considered to be greater than the shorter string.

Requirements

Header

oleauto.h,
XRPropertyBag.h

Library

oleaut32.lib

See Also

Reference

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