Skip to main content

get_cell

Method of CSVDocument.

Overloads

NameDescription
get_cell(const string column_name, const integer row_index, const CSVValueConverterFunc converter) -> ObjectReturns a cell value converted by a converter function.
get_cell(const string column_name, const string row_name) -> ObjectReturns a cell as a string.
get_cell(const string column_name, const integer row_index) -> ObjectReturns a cell as a string.
get_cell(const string column_name, const string row_name, const CSVValueConverterFunc converter) -> ObjectReturns a cell value converted by a converter function.
get_cell(const integer column_index, const string row_name) -> ObjectReturns a cell as a string.
get_cell(const integer column_index, const string row_name, const CSVValueConverterFunc converter) -> ObjectReturns a cell value converted by a converter function.
get_cell(const integer column_index, const integer row_index) -> ObjectReturns a cell as a string.
get_cell(const integer column_index, const integer row_index, const CSVValueConverterFunc converter) -> ObjectReturns a cell value converted by a converter function.

get_cell(const string column_name, const integer row_index, const CSVValueConverterFunc converter) -> Object

Returns a cell value converted by a converter function.

Parameters

  • column_name: The name of the column of the cell to retrieve.
  • row_index: The row index of the cell to retrieve.
  • converter: A function that converts each string value in the row.

get_cell(const string column_name, const string row_name) -> Object

Returns a cell as a string.

Parameters

  • column_name: The name of the column of the cell to retrieve.
  • row_name: The name of the row of the cell to retrieve.

get_cell(const string column_name, const integer row_index) -> Object

Returns a cell as a string.

Parameters

  • column_name: The name of the column of the cell to retrieve.
  • row_index: The row index of the cell to retrieve.

get_cell(const string column_name, const string row_name, const CSVValueConverterFunc converter) -> Object

Returns a cell value converted by a converter function.

Parameters

  • column_name: The name of the column of the cell to retrieve.
  • row_name: The name of the row of the cell to retrieve.
  • converter: A function that converts each string value in the row.

get_cell(const integer column_index, const string row_name) -> Object

Returns a cell as a string.

Parameters

  • column_index: The column index of the cell to retrieve.
  • row_name: The name of the row of the cell to retrieve.

get_cell(const integer column_index, const string row_name, const CSVValueConverterFunc converter) -> Object

Returns a cell value converted by a converter function.

Parameters

  • column_index: The column index of the cell to retrieve.
  • row_name: The name of the row of the cell to retrieve.
  • converter: A function that converts each string value in the row.

get_cell(const integer column_index, const integer row_index) -> Object

Returns a cell as a string.

Parameters

  • column_index: The column index of the cell to retrieve.
  • row_index: The row index of the cell to retrieve.

get_cell(const integer column_index, const integer row_index, const CSVValueConverterFunc converter) -> Object

Returns a cell value converted by a converter function.

Parameters

  • column_index: The column index of the cell to retrieve.
  • row_index: The row index of the cell to retrieve.
  • converter: A function that converts each string value in the row.