Microsoft Foundation Classes (mfc.hlp) (Table of Contents; Topic list)
CString::MakeLower
CString                                     Up Contents Index Back
──Microsoft Foundation Classes──────────────────────────────────────────────
 
  void MakeLower();
 
  Remarks
 
  Converts this CString object to a lowercase string.
 
  Example
 
  CString s( "ABC" );
  s.MakeLower();
  ASSERT( s == "abc" );
 
 
  See Also
 
  CString::MakeUpper
 
 
                                     -♦-