System.UpCase
Delphi
function UpCase(ch: _AnsiChr): _AnsiChr;
function UpCase(Ch: WideChar): WideChar;
C++
extern DELPHI_PACKAGE System::AnsiChar __fastcall UpCase(System::AnsiChar Ch)/* overload */;
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
function | public | System.pas System.hpp |
System | System |
Description
Converts a character to uppercase.
UpCase converts a character to uppercase. Ch is an expression of type Char. Character values not in the range a..z are unaffected.
See Also