System.WideString.operator >=

From RAD Studio API Documentation
Revision as of 21:27, 28 October 2011 by Kmasuyama (talk | contribs) (wrong import)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

C++

bool operator >=(const WideString& rhs) const;
bool operator >=(const BSTR w) const;
bool operator >=(const char* s) const

Properties

Type Visibility Source Unit Parent
function public wstring.h System WideString


Description

Compares two strings.

The operator >= returns True if this WideString is greater than or equal to rhs, False otherwise. The strings are compared using the numerical value of each character, with case sensitivity.

See Also