The Source Debugger allows you to display the contents of arrays and pointers in a separate window. To open a secondary window displaying array or pointer contents, simply click the button with the window icon that appears to the left of the array or pointer reference in the module content window.
Note: Pointers are labeled "Pointer" in green text in the Value column of the module content window, while arrays are labeled "Array" and the number of array elements is indicated.
The secondary window for an array displays the name of the array (e.g. LookupArray), to the right of which the number of array elements is indicated (e.g. Array [0..64]). Beneath the array name/elements count, each array element is listed, starting at 0, and the value for each element is listed in the Value column to its right.
The secondary window for a pointer displays the name of the pointer (e.g. RPCStatus), to the right of which the text "Pointer" appears. Beneath "Pointer" in the Value column is the value being pointed to by the identified pointer.