JMP 14.0 Online Documentation (English)
Discovering JMP
Using JMP
Basic Analysis
Essential Graphing
Profilers
Design of Experiments Guide
Fitting Linear Models
Predictive and Specialized Modeling
Multivariate Methods
Quality and Process Methods
Reliability and Survival Methods
Consumer Research
Scripting Guide
JSL Syntax Reference
JMP iPad Help
JMP Interactive HTML
Capabilities Index
JMP 13 Online Documentation
JMP 12 Online Documentation
Scripting Guide
•
JSL Building Blocks
•
Global and Local Variables
• Hide a Global Variable
Previous
•
Next
Hide a Global Variable
To hide (or protect) a global variable, put two underscores (__) before the name. Protecting a global variable means that it will be hidden and can not be examined or shown. However, the behavior is different depending upon the context.
This example will not print the variable because it is protected:
Show(::__xyz);
This example returns a NULL value for the protected variable:
::a = Name Expr( ::__xyz );
This example does return a value for the protected variable:
Show( Eval( ::__xyz ) );
Previous
•
Next
Help created on 7/12/2018