<-- Previous || Up || Next -->

Is Lower Function
Character Types Class

Public Function IsLower( _
    ByVal vCharCode As Integer _
    ) As Boolean

"Is Character Lower Case Alphabetic"
Return True if the character with ASCII value vCharCode is a lower-case alphabetic character ("a"..."z", accented lower-case characters like c-circumflex, etc.).
Return False otherwise.

Examples:
    IsLower(Asc("c")) = True
    IsLower(Asc("C")) = False
    IsLower(Asc("2")) = False
See also:
    IsUpper Function
    IsAlpha Function
    IsNotLowerCase Functon
    CharTypeLower Property
vCharCode: Character whose ASCII value is checked to determine if it belongs to the lower-case alphabetic class.
Note: Function will generate a runtime error if vCharCode is not between 0 (zero) and 255 inclusive.

Copyright 1996-1999 Entisoft
Entisoft Tools is a trademark of Entisoft.