lr.eval_long

Returns the long value of the parameter.

JavaScript

function lr.eval_long(  param_name  )

VBScript

Function lr.eval_long(  param_name  )
String and Parameter Functions

Arguments

NameComments
param_nameThe parameter to evaluate.

The lr.eval_long function returns the value of the parameter as a Long.

Return Values

Returns the value of the parameter as a long.

Parameterization

All input arguments can be parameterized using standard parameterization.

VBScript Example

In the following example, save_long createsparametertwenty_two and eval_long saves the value to a long variable and for outputs the value using output_message.

Dim lVal as long
lr.save_long "twenty_two", 22
lVal = lr.eval_long ("<twenty_two>")
lr.output_message "The value of variable lVal is " _
    + Cstr(lVal)
lr.output_message "The value of parameter twenty_two is " _
    + Cstr(lr.eval_long ("<twenty_two>"))