TFlexCelReport.ResolveString Method
This is the method that does the parsing. Could be made virtual and override it on a descendant class to support self defined Tags.
Syntax
Unit: FlexCel.Report
function TFlexCelReport.ResolveString(const s: TCellValue; const XF: Integer; const CurrentBand: TBand; const Row: Integer; const Col: Integer): TOneCellValue; overload;
Parameters
<-> |
Parameter |
Type |
Description |
const |
s |
TCellValue |
String to parse. |
const |
XF |
Integer |
Original XF of the cell. The value returned might change it, if for example there is a #FormatCell tag. |
const |
CurrentBand |
TBand |
The band we are currently in. |
const |
Row |
Integer |
Row where the cell is. |
const |
Col |
Integer |
Column where the cell is. |
Returns
A parsed class, with values replaced by tags found on s.
See also