DataRowReaderColumn Constructor (String, DataType, DataValueCursor) TIBCO Spotfire 6.0 API Reference
Create a new column for a DataRowReader with additional properties defined.

Namespace: Spotfire.Dxp.Data
Assembly: Spotfire.Dxp.Data (in Spotfire.Dxp.Data.dll) Version: 13.19.7018.3940 (13.19.7018.3940)
Syntax

public DataRowReaderColumn(
	string name,
	DataType dataType,
	DataValueCursor cursor
)

Parameters

name
Type: System String
The name of the column.
dataType
Type: Spotfire.Dxp.Data DataType
The data type of the column.
cursor
Type: Spotfire.Dxp.Data DataValueCursor
The DataValueCursor that defines the column values.
Exceptions

ExceptionCondition
System ArgumentNullExceptionThrown if the name is null.
System ArgumentNullExceptionThrown if the dataType is null.
System ArgumentNullExceptionThrown if the cursor is null.
System ArgumentExceptionThrown if the name is the empty string.
Remarks

Implementors typically use the CreateMutableCursor(DataType) factory method to create the DataValueCursor.
See Also