Table of Contents

TLinqDataTableState<T>.GetValue Method

Overloads

TLinqDataTableState<T>.GetValue(Int32)

Returns the value for row VirtualDataTableState.Position, at the column "column"

Syntax

Namespace: FlexCel.Report

public override Object GetValue(Int32 column)

Parameters

<-> Parameter Type Description
column Int32 Column identifier returned by VirtualDataTable.GetColumn

See also

TLinqDataTableState<T>.GetValue(Int32, Int32)

Returns the value for row "row", at the column "column". You need to overload this method only if you want to support DBValue tag.

Syntax

Namespace: FlexCel.Report

public override Object GetValue(Int32 row, Int32 column)

Parameters

<-> Parameter Type Description
row Int32 Row identifier (0 based)
column Int32 Column identifier returned by VirtualDataTable.GetColumn

See also