###Function###
StringIsSpace

###Description###
Checks if a string contains only whitespace characters.

###Syntax###
StringIsSpace ( "string" )


###Parameters###
@@ParamTable@@
string
	The string to check
@@End@@

###ReturnValue###
@@ReturnTable@@
Success:	Returns 1.
Failure:	Returns 0 if string contains non-whitespace characters.
@@End@@


###Remarks###
Whitespace includes Chr(9) thru Chr(13) which are HorizontalTab, LineFeed, VerticalTab, FormFeed, and CarriageReturn.

Whitespace also includes the standard space ( Chr(32) ).

###Related###
StringIsAlNum, StringIsAlpha, StringIsASCII, StringIsDigit, StringIsLower, StringIsUpper, StringIsXDigit, StringUpper, StringLower, StringStripCR, StringStripWS


###Example###
@@IncludeExample@@
