Previous Page | Next Page

SAS Component Language Dictionary

GGLOBALE



Deletes an internal table of SYMBOL, PATTERN, LEGEND, or AXIS definitions
Category: SAS System Option

Syntax
Details
Example
See Also

Syntax

sysrc=GGLOBALE(stmt-type);

sysrc

contains the return code for the operation:

0

successful

[ne]0

not successful

Type: Numeric

stmt-type

specifies the type of statement to delete:

'SYMBOL'

'PATTERN'

'LEGEND'

'AXIS'

Type: Character


Details

When you have completed processing information concerning the SYMBOL, PATTERN, LEGEND, or AXIS statements, use GGLOBALE to free the memory used for storing the internal table that was created with GGLOBALN. For more information about the SYMBOL, PATTERN, LEGEND, and AXIS statements, see SAS/GRAPH: Reference.


Example

Free the internal table that was created by GGLOBALN for the SYMBOL statements, and check the return code to determine whether a message needs to be issued:

rc=gglobale('symbol');
if rc then _msg_=sysmsg();


See Also

GGLOBAL

GGLOBALN

Previous Page | Next Page | Top of Page