###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:	1.
Failure:	0 if string contains non-whitespace characters.
@@End@@


###Remarks###
Whitespace includes <a href="Chr.htm">Chr</a>(9) thru <a href="Chr.htm">Chr</a>(13) which are HorizontalTab, LineFeed, VerticalTab, FormFeed, and CarriageReturn.  Whitespace also includes the null string ( <a href="Chr.htm">Chr</a>(0) ) and the standard space ( <a href="Chr.htm">Chr</a>(32) ).


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


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