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