CellSpace/Manual (draft)
by CellWorks
Home
  
Table of Contents
  
Glossary
isText
The isText function returns true if the argument is text and false otherwise.
Usage:
	= isText(<cell_or_expression>);
Examples:
	/* returns true */
	= isText("hello");
	/* returns true */
	= isText("6");
	/* returns false */
	= isText(5);