Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Info
titleAvailability

This routine is available since katl-commons 2.5/databasecf 2.1.

Syntax

...

getColumn(tableField, columnIndex)

Description

...

Excerpt

Retrieves the data in the column at the specified index from a data table custom field.

Parameters

...

Parameter nameTypeRequiredDescription
tableFieldarrayYesThe data table custom field value.
columnIndexnumberYesThe index of the column to be retrieved.

Return Type

...

string[]

Example

...

Code Block
string[] fullNames = getColumn(customfield_10001, 1);

...