Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
voidMakeLower();
Remarks
Converts this CString object to a lowercase string.
Example
The following example demonstrates the use of CString::MakeLower.
// example for CString::MakeLower
CString s( "ABC" );
s.MakeLower();
ASSERT( s == "abc" );
CString Overview | Class Members | Hierarchy Chart
See Also CString::MakeUpper