DataValueCursor Create T, U  Method (IDataColumn, DataValueTransform T, U ) TIBCO Spotfire 6.0 API Reference
Creates a transforming value cursor for a given column. Note: this method is not implemented.

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

[EditorBrowsableAttribute(EditorBrowsableState.Never)]
[ObsoleteAttribute("This method is not implemented. Use the DataValueCursor<TOutput> Create<TOutput, TInput>(IDataColumn column, DataValueTransform<TInput, TOutput> transform) method.")]
public static DataValueCursor<T> Create<T, U>(
	IDataColumn column,
	DataValueTransform<T, U> transform
)

Parameters

column
Type: Spotfire.Dxp.Data IDataColumn
The column.
transform
Type: Spotfire.Dxp.Data DataValueTransform T, U 
The value transform.
Type Parameters

T
The desired output value type.
U
The actual value type.

Return Value

Type: DataValueCursor T 
A value cursor.
See Also