Xbasic

CALCULATED_FIELD_GET Function

Syntax

as P = CALCULATED_FIELD_GET(P variables,C name)

Arguments

variables

A pointer to the variable scope. See Variable Data Types and Scope.

name

The name of the calculated value. Character

Description

Returns a pointer to a calculated field.

Discussion

The CALCULATED_FIELD_GET() function returns a pointer to a calculated value.

Example

dim ptr as P
dim pp as P
pp = local_variables()
ptr = calculated_field_get(pp, "all_days_average")

Limitations

Desktop applications only.

See Also