ChartDirector 7.1 (.NET Edition)

DBTable.getColAsString


Usage

[C#]public string[] getColAsString(int i);
[VB]Public Function getColAsString(i As Integer) As String()

Description

Gets the requested column of the table as an array of strings.

If native data type of the column is not a string, the data will be converted to strings using .NET's Object.toString method.

Arguments

ArgumentDefaultDescription
i(Mandatory)The column number. The first column is 0. The nth column is (n - 1).

Return Value

An array of strings representing the column.