FastReport 变量列表使用

使用报表变量时,引用“frxVariables”单元。 变量定义在“TfrxVariable” 类:

TfrxVariable = class(TCollectionItem)

published

property Name: String;     //Name of a variable

property Value: Variant;    //Value of a variable

end;

变量列表在“TfrxVariables” 类,有所有相关的方法:

TfrxVariables = class(TCollection)

public

function Add: TfrxVariable;   //Adds a variable to the end of the list

function Insert(Index: Integer): TfrxVariable;   //Adds a variable to the given position of the list

function IndexOf(const Name: String): Integer;   //Returns the index of a variable with the given name

procedure AddVariable(const ACategory, AName: String; const AValue: Variant);  //Adds a variable to the specified category

procedure DeleteCategory(const Name: String);   //Deletes a category and all its variables

procedure DeleteVariable(const Name: String);   //Deletes a variable

procedure GetCategoriesList(List: TStrings; ClearList: Boolean = True);   //Returns the list of categories

procedure GetVariablesList(const Category: String; List: TStrings);  //Returns the list of variables in the specified category

property Items[Index: Integer]: TfrxVariable readonly;  //The list of variables

property Variables[Index: String]: Variant; default;  //Values of variables

end;

如果变量的列表很长,可以按类别分组。例如,当有下列变量列表:

Customer name

Account number

in total

total vat

可以使用以下方式:

Properties

Customer name

Account number

Totals

In total

total vat

有以下局限:

- 必须创建至少一个类别

- 类别在data tree下层, 变量在第二层

- 类别不能嵌套

- 变量的名称必须是唯一的,在整体列表中,而不是在一个类别中

一:创建一个变量列表

A link to the report variables is stored in the “TfrxReport.Variables” property. To create a list manually, the following steps must be performed:

- clear the list

- create a category

- create variables

- repeat the 2 and 3 steps to create another category

二:清空变量列表

It is performed with the help of the “TfrxVariables.Clear” method:

frxReport1.Variables.Clear;

三:添加分类

必需至少创建一个类别, 类别和变量保存在一个list。 类别不同于变量是以一个空格开始,这是名字的第一个符号.所有的变量都是属于这一类别。

有两个方法添加类别:

frxReport1.Variables[‘ ‘ + ‘My Category 1‘] := Null;

or

var

Category: TfrxVariable;

Category := frxReport1.Variables.Add;

Category.Name := ‘ ‘ + ‘My category 1‘;

四:添加变量

添加变量必须在类别添加以后, 在列表中变量名必须唯一, 并且必须在类别中。

这里有几个方法添加变量到列表:

frxReport1.Variables[‘My Variable 1‘] := 10; //  添加(如果不存在) 或修改一个变量的值。

var

Variable: TfrxVariable;

Variable := frxReport1.Variables.Add;

Variable.Name := ‘My Variable 1‘;

Variable.Value := 10;

以上2个方法都把变量添加到列表最后, 因此, 添加到最后的类别. 如果想添加到列表的指定位置,使用“Insert” 方法:

var

Variable: TfrxVariable;

Variable := frxReport1.Variables.Insert(1);

Variable.Name := ‘My Variable 1‘;

Variable.Value := 10;

添加到指定的类别,使用“AddVariable” 方法:

frxReport1.Variables.AddVariable(‘My Category 1‘, ‘My Variable 2‘, 10);

五:删除变量

frxReport1.Variables.DeleteVariable(‘My Variable 2‘);

六:删除分类

frxReport1.Variables.DeleteCategory(‘My Category 1‘);

七:修改变量值

八:脚本变量

你可以在TfrxReport.Script中定义脚本变量,用来代替report变量, 看看 report变量和 script变量的不同:

 
Report variables


Script variables


位置


In the report variables list, TfrxReport.Variables.


In the report script, TfrxReport.Script.Variables.


Variable name


May contain any symbols.


May contain any symbols. But if you want to use that variable inside the report script, its name should conform to Pascal identificator specifications.


Variable value


May be of any type. Variables of string type are calculated each time you access them, and are, in itself, an expressions.


May be of any type. No calculation is performed, behavior is like standard language variable.


可访问性


Programmer can see the list of report variables in the "Data tree" window.


The variable is not visible, programmer should know about it.

Working with script variables is easy. Just assign value to the variable this way:

frxReport1.Script.Variables[‘My Variable‘] := ‘test‘;

In this case FastReport will create a variable if it is not exists, or assign a value to it. There is no need to use extra quotes when assigning a string to that variable.

九:TfrxReport.OnGetValue中传递变量值

最后一种传递值到报表中的方法是使用 TfrxReport.OnGetValue 事件,这个方式可以得到动态值,以前的方法通过静态值。

举例说明使用方法. 报表中放一个文本对象,输入以下内容:

[My Variable]

创建 TfrxReport.OnGetValue 事件:

procedure TForm1.frxReport1GetValue(const VarName: String; var Value: Variant);

begin

if CompareText(VarName, ‘My Variable‘) = 0 then

Value := ‘test‘

end;

运行报表,我们看到变量是显示正确的。 事件TfrxReport.OnGetValue 在遇到所有未知变量时调用 。

http://www.cnblogs.com/moon25/p/5534095.html

时间: 2024-10-06 21:46:41

FastReport 变量列表使用的相关文章

UNIX高级环境编程(8)进程环境(Process Environment)- 进程的启动和退出、内存布局、环境变量列表

在学习进程控制相关知识之前,我们需要了解一个单进程的运行环境. 本章我们将了解一下的内容: 程序运行时,main函数是如何被调用的: 命令行参数是如何被传入到程序中的: 一个典型的内存布局是怎样的: 如何分配内存: 程序如何使用环境变量: 程序终止的各种方式: 跳转(longjmp和setjmp)函数的工作方式,以及如何和栈交互: 进程的资源限制 ? 1 main函数 main函数声明: int main (int argc, char *argv[]); 参数说明: argc:命令行参数个数

Phpcms所有系统变量列表 Phpcms V9 文件目录结构

Phpcms所有系统变量列表 用户变量: view plaincopy to clipboardprint? $_userid    用户id   $_username 用户名   $_areaid   地区id   $_groupid 用户组id   $_modelid     $_amount 用户资金   $_point 用户点数   $_message     $_email 用户email $_userid    用户id $_username 用户名 $_areaid   地区id

存储过程里面使用in变量列表异常的处理

在写一个存储过程的时候,由于需要用到类似:select id,name from tablename where id in(id1,id2,id3...)的查询语句,同时括号里面的变量是拼接得到的,当时没有多想,直接将存储过程写成类似select id,name from tablename where id in(@idStr),然后传入拼接后的id进去.果然就报错了: 然后分析了一下,id列是int类型的,但是传入的是varchar类型,应该是编译执行的时候,将@idStr当做一个变量使用

Shell特殊变量列表

特殊变量列表 变量 含义 $0 当前脚本的文件名 $n 传递给脚本或函数的参数.n 是一个数字,表示第几个参数.例如,第一个参数是$1,第二个参数是$2. $# 传递给脚本或函数的参数个数. $* 传递给脚本或函数的所有参数. [email protected] 传递给脚本或函数的所有参数.被双引号(" ")包含时,与 $* 稍有不同,下面将会讲到. $? 上个命令的退出状态,或函数的返回值. $$ 当前Shell进程ID.对于 Shell 脚本,就是这些脚本所在的进程ID.

Windows系统变量列表

%ALLUSERSPROFILE% : 列出所有用户Profile文件位置. %APPDATA% :  列出应用程序数据的默认存放位置. %CD% :  列出当前目录. %CLIENTNAME% :  列出联接到终端服务会话时客户端的NETBIOS名. %CMDCMDLINE% :  列出启动当前cmd.exe所使用的命令行. %CMDEXTVERSION% :  命令出当前命令处理程序扩展版本号. %CommonProgramFiles% :  列出了常用文件的文件夹路径. %COMPUTER

python 数据类型 变量 列表 元组 字典 集合

Python中,能够直接处理的数据类型有以下几种: 整数 Python可以处理任意大小的整数,当然包括负整数,在程序中的表示方法和数学上的写法一模一样,例如:1,100,-8080,0,等等. 计算机由于使用二进制,所以,有时候用十六进制表示整数比较方便,十六进制用0x前缀和0-9,a-f表示,例如:0xff00,0xa5b4c3d2,等等. 浮点数 浮点数也就是小数,之所以称为浮点数,是因为按照科学记数法表示时,一个浮点数的小数点位置是可变的,比如,1.23x109和12.3x108是完全相等

PHP常用$_SERVER变量列表

$_SERVER['HTTP_ACCEPT_LANGUAGE'] //浏览器语言 $_SERVER['REMOTE_ADDR'] //当前用户 IP . $_SERVER['REMOTE_HOST'] //当前用户主机名 $_SERVER['REQUEST_URI'] //URL $_SERVER['REMOTE_PORT'] //端口. $_SERVER['SERVER_NAME'] //服务器主机的名称. $_SERVER['PHP_SELF']//正在执行脚本的文件名 $_SERVER['

shell 常见特殊变量列表

变量 含义 $0 获取当前执行shell脚本的文件名 $n 传递给脚本或函数的参数.n 是一个数字,表示第几个参数.例如,第一个参数是$1,第二个参数是$2.当n大于9时需要用大括号括起来,如:${10} $# 传递给脚本或函数的参数个数. $* 获取当前shell 的所有参数,注意与[email protected]的区别 [email protected] 这个程序的所有参数"$1" "$2" "$3" "...",这是将

WhatsUp Gold v14.3.1 中的percent变量列表

%ActiveMonitor.Argument SNMP instance number. This is only used when an action is associated  directly with an active monitor, and not the device as a whole. %ActiveMonitor.Comment The human readable name that coincides with the network switch. This