get_column_list()¶
- get_column_list()¶
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 = get_column_list() puts columnList end