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

Is Space Function
Character Types Class

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

"Is Character Space"
Return True if the character with ASCII value vCharCode is a "space" character; return False otherwise.
The "space" classification include whitespace characters (Chr$(32) and Chr$(160)) and carriage control characters (carriage return, line feed, form feed, etc.).

Examples:
    IsSpace(Asc(" ")) = True
    IsSpace(Asc(vbCr)) = True
    IsSpace(Asc(vbTab)) = True
    IsSpace(Asc("$")) = False
See also:
    IsCarriage Function
    IsCntrl Function
    CharTypeSpace Property
    CharTypeWhitespace Property
    CharTypeCarriage Property
vCharCode: Character whose ASCII value is checked to determine if it belongs to the "space" 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.