getColumnList()¶
- getColumnList()¶
Outputs a list of all the columns in the current spreadsheet.
Parameter
Type
Description
None
Returns
List of columns.
Example
The following example assigns the list of columns to a Ruby object called,
columnList
and prints it out usingputs
.require 'Datavyu_API.rb' begin columnList = getColumnList() puts columnList end