Table of Contents

TVirtualDataTableState.GetValue Method

Overloads

TVirtualDataTableState.GetValue(Integer)

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

Syntax

Unit: FlexCel.Report

function TVirtualDataTableState.GetValue(const column: Integer): TReportValue; overload; virtual; abstract;

Parameters

<-> Parameter Type Description
const column Integer Column identifier returned by TVirtualDataTable.GetColumn

See also

TVirtualDataTableState.GetValue(Integer, Integer)

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

Unit: FlexCel.Report

function TVirtualDataTableState.GetValue(const row: Integer; const column: Integer): TReportValue; overload; virtual; abstract;

Parameters

<-> Parameter Type Description
const row Integer Row identifier (0 based)
const column Integer Column identifier returned by TVirtualDataTable.GetColumn

See also