IsDigit() Type: REGULAR FUNCTION Purpose: Determines if an ASCII number refers to a numeric character (0–9). Usage: Result = IsDigit(AsciiNumb) AsciiNumb INDEX ASCII number of the character. Result… read more →
IsLower() Type: REGULAR FUNCTION Purpose: Determines if an ASCII number refers to a lowercase letter (a–z). Usage: Result = IsLower(AsciiNumb) AsciiNumb INDEX ASCII number of the character. Result… read more →
IsPunct() Type: REGULAR FUNCTION Purpose: Determine whether an ASCII number refers to a punctuation character. Returns TRUE for any printable character that is not a space character or an alphanumeric… read more →
Iquant.Print() Type: INSTANCE FUNCTION Purpose: Prints an Iquant to the current Output file. The Iquant is printed in the format: Tag <tab> IQUANT <tab> Quantity <tab> Prompt If the Tag… read more →
Iquant.SetValue() Type: INSTANCE FUNCTION Purpose: Sets the value of the Iquant. Usage: Iquant.SetValue(Value) Value INDEX New value for the Iquant. Related Topics
Iquant.Sprint() Type: INSTANCE FUNCTION Purpose: Prints the Iquant to a string. Usage: Result = Iquant.Sprint(Format) Format STRING (Optional) C-language format specifier for long integer. Default is %ld. Result STRING… read more →
Iquant.Value() Type: INSTANCE FUNCTION Purpose: Copies the current value of an Iquant into an INDEX. Usage: Value = Iquant.Value() Value INDEX Current value of the Iquant. Related Topics
IsAlnum() Type: REGULAR FUNCTION Purpose: Determines if an ASCII number refers to an alphanumeric character (A–Z), (a–z), or (0–9). Usage: Result = IsAlnum(AsciiNumb) AsciiNumb INDEX ASCII number of the… read more →
IQUANT.New() Type: CLASS FUNCTION Purpose: Creates and initializes a new Iquant object. Usage: Iquantity = IQUANT.New(Tag, Quantity, Prompt) Tag STRING Used by Setup(), Save/Restore, Tag.Printl() Quantity INDEX Initial value… read more →
IQUANT Type: CLASS Purpose: The IQUANT class allows a user to edit, save, and restore INDEX (integer) values in Setup(). Remember, INDEXes by themselves cannot be given as parameters to… read more →