Real() Type: REGULAR FUNCTION Purpose: Convert INDEX, BITS, BOOL, or STRING to a REAL. Anything other than these legal arguments is converted to 0.000. Real() acting on string that does… read more →
Round() Type: REGULAR FUNCTION Purpose: Round a REAL value to a known number of decimal places. Round (3.0149, 2) → 3.01 (Rounded to 2 places) Round (10.51, 0) → 11… read more →
Quant.Printl() Type: INSTANCE FUNCTION Purpose: Print a Quant to the current Output file. The Quant is printed in the format: Tag <tab> QUANT <tab> Quantity <tab> Prompt If the Tag… read more →
Quant.SetValue() Type: INSTANCE FUNCTION Purpose: Copy a REAL into a QUANT. Usage: Quant.SetValue(Quantity) Quantity REAL New value of the Quant. Related Topics
Quant.Sprint() Type: INSTANCE FUNCTION Purpose: Print the Quant as a formatted string. Usage: Result = Quant.Sprint(Format) Format STRING Optional. Format string used in C-language sprintf… read more →
Quant.Value() Type: INSTANCE FUNCTION Purpose: Copy the current value of a Quant into a REAL. Usage: Value = Quant.Value() Value REAL Current value of the… read more →
Query() Type: REGULAR FUNCTION Purpose: Ask the operator to answer a multiple-choice question. A dialog box with the choices is displayed, and the script pauses until the operator makes a… read more →
Pwr.DataCol() Type: INSTANCE FUNCTION Purpose: Create and return an object of the class DATACOL. The object is filled with data extracted from one column of the PWR object’s data array.… read more →
QUANT.Dialog Type: LICENSE Purpose: Allow Quant to be edited, saved, and restored in Setup(). The Quant is edited using the fields: Prompt [Quantity ] When the operator enters a value,… read more →
Quant.New() Type: CLASS FUNCTION Purpose: Create a new Quant object. Usage: Quant = QUANT.New(Tag, Quantity, Prompt) Tag STRING Used by Setup(), Save/Restore, Tag.Printl() Quantity REAL Initial value for… read more →