printCellCodes()

printCellCodes()

printCellCodes(cell)

Prints out the values for every code in a specified cell.

Parameter

Type

Description

cell

RCell object

The 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 using printCellCodes().

require 'Datavyu_API.rb'
begin
   trial = getColumn("trial")
   cell = trial.cell[0]

   puts printCellCodes(cell)
end