System.UpCase

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function UpCase(ch: _AnsiChr): _AnsiChr;
function UpCase(Ch: WideChar): WideChar;

C++

extern DELPHI_PACKAGE char __fastcall UpCase(char 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


Code Examples