print_cell_codes()¶
- print_cell_codes(cell)¶
Prints out the values for every code in a specified cell.
Parameter
Type
Description
cellRCellobjectThe cell whose codes you are printing out.
Returns
An object listing all of the codes in a given cell.
Example
The following example uses
putsto print out the codes for the first cell in the “trial” column, accessed usingprint_cell_codes().require 'Datavyu_API.rb' begin trial = getColumn("trial") cell = trial.cell[0] puts print_cell_codes(cell) end
