IsValid - method of the Pm object
Description:
Test the validity of the value.
Syntax:
Boolean IsValid(Variant Value)
Parameters:
Value | (Variant) The value to be tested for validity. |
---|
Return value:
true - on success. The value is valid.
false - on error. The value is INVALID. For example the value is:
Example:
JavaScriptVBScriptSelect and copy to clipboard
var bIsValid = Pm.IsValid(3.14);
Dim bIsValid
bIsValid = Pm.IsValid(3.14)