IsAllHebrew
PowerScript function
Description
Tests whether a particular string is composed entirely of Hebrew
characters.
Syntax
|
1 |
IsAllHebrew ( string ) |
|
Argument |
Description |
|---|---|
|
string |
A string whose value you want to test to find out if it is |
Return value
Boolean.
Returns true if string is composed entirely of Hebrew characters and
false if it is not. The presence of numbers, spaces, and punctuation marks
will also result in a return value of false.
Usage
If you are not running a version of Windows that supports
right-to-left languages, IsAllHebrew is set to false.
Examples
Under a version of Windows that supports right-to-left languages,
this statement returns true if the SingleLineEdit sle_name is composed
entirely of Hebrew characters:
|
1 |
IsAllHebrew(sle_name.Text) |
See also