data.printGrid
Description
Print a 2D array (grid) returned from data.loadCsvFile or data.runSelectQuery to the output window.

Parameters
grid 2D array (in format cells[yRow][xCol])

Return value
none

Example

Comments
See section 11.2 here for an explanation of Lua multi-dimensional arrays: <a href="https://www.lua.org/pil/11.2.html">https://www.lua.org/pil/11.2.html</a>

See also
data.loadCsvFile
data.runSelectQuery
ui.showGridViewerDialog

Back