ChartDirector 7.1 (.NET Edition)

DBTable.getColAsDateTime


Usage

[C#]public DateTime[] getColAsDateTime(int i);
[VB]Public Function getColAsDateTime(i As Integer) As DateTime()

Description

Gets the requested column of the table as an array of System.DateTime objects.

This method will throw an InvalidCastException if any datum in the column cannot be converted to a DateTime.

Arguments

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

Return Value

An array of System.DateTime objects representing the column.