Table of Contents

VirtualDataTableState.GetValue Method

Overloads

VirtualDataTableState.GetValue(Int32)

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

Syntax

Namespace: FlexCel.Report

public abstract Object GetValue(Int32 column)

Parameters

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

See also

VirtualDataTableState.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 abstract 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