ShowArray()
Summary
Displays a Windows dialog box containing the contents of an array, including nested sub-arrays.
Syntax
ShowArray(array arr)
| Argument | Contents |
|---|---|
| arr | The array to be shown |
Notes
-
This function is useful for debugging purposes when you want to check the values of array, either before passing it as input to a function or after getting it back from a function.
-
This function can also be used to show non-array variables by placing them in an array, e.g., ShowArray({x, y, z}).
-
When a compound object is displayed by ShowArray(), it displays a compact representation of the member elements. To see the full details of the compound object, use ShowArray() on the member elements.
Example
arr = GetThemeStatistics("my theme",)
ShowArray(arr)
See Also
| Function | Summary |
|---|---|
| ShowMessage() | Shows a message in a standard Windows message box |