n class is for properties of user-defined classes. It is read-only.
Variable |
Value/meaning |
Access |
class%className (className is not "list") |
An array of variable names in the class className. This is a "virtual" array and access to individual elements is not allowed. e.g. you cannot use class%myclass:#0 to access the first element of thg class%myclass array.
However, you can "foreach" the variable or assign it to another variable for access to its elements. |
get (array only) |
class%className:varcount |
The number of variables in className |
get |
class%className:varlist |
A comma-delimited list of variable names in the class className. |
get |
class%className:list |
Same as class%className:varlist |
get |
class%list:className |
Same as class%className:varlist |
get |
class%list |
An array of all class names in the context. It is a "virtual" array (like class%className, no access to individual ones is allowed.) |
get (array only) |
|