Skip to content

Latest commit

 

History

History
95 lines (70 loc) · 2.77 KB

nf-winuser-ischarlowera.md

File metadata and controls

95 lines (70 loc) · 2.77 KB
UID title description helpviewer_keywords old-location tech.root ms.assetid ms.date ms.keywords req.header req.include-header req.target-type req.target-min-winverclnt req.target-min-winversvr req.kmdf-ver req.umdf-ver req.ddi-compliance req.unicode-ansi req.idl req.max-support req.namespace req.assembly req.type-library req.lib req.dll req.irql targetos req.typenames req.redist ms.custom f1_keywords dev_langs topic_type api_type api_location api_name
NF:winuser.IsCharLowerA
IsCharLowerA function (winuser.h)
Determines whether a character is lowercase. This determination is based on the semantics of the language selected by the user during setup or through Control Panel.
IsCharLowerA
winuser/IsCharLowerA
menurc\ischarlower.htm
menurc
VS|winui|~\winui\windowsuserinterface\resources\strings\stringreference\stringfunctions\ischarlower.htm
12/05/2018
IsCharLower, IsCharLower function [Menus and Other Resources], IsCharLowerA, _win32_IsCharLower, _win32_ischarlower_cpp, menurc.ischarlower, winui._win32_ischarlower, winuser/IsCharLower, winuser/IsCharLowerA
winuser.h
Windows.h
Windows
Windows 2000 Professional [desktop apps only]
Windows 2000 Server [desktop apps only]
IsCharLowerA (ANSI)
User32.lib
User32.dll
Windows
19H1
IsCharLowerA
winuser/IsCharLowerA
c++
APIRef
kbSyntax
DllExport
User32.dll
API-MS-Win-Core-Stringansi-l1-1-0.dll
KernelBase.dll
API-MS-Win-DownLevel-user32-l1-1-0.dll
API-MS-Win-DownLevel-user32-l1-1-1.dll
IsCharLower
IsCharLowerA

IsCharLowerA function

-description

Determines whether a character is lowercase. This determination is based on the semantics of the language selected by the user during setup or through Control Panel.

-parameters

-param ch [in]

Type: TCHAR

The character to be tested.

-returns

Type: BOOL

If the character is lowercase, the return value is nonzero.

If the character is not lowercase, the return value is zero. To get extended error information, call GetLastError.

-see-also

Conceptual

IsCharUpper

Reference

Strings

-remarks

Note

The winuser.h header defines IsCharLower as an alias which automatically selects the ANSI or Unicode version of this function based on the definition of the UNICODE preprocessor constant. Mixing usage of the encoding-neutral alias with code that not encoding-neutral can lead to mismatches that result in compilation or runtime errors. For more information, see Conventions for Function Prototypes.