AdvStringGrid使用方法(2)
程序员文章站
2022-05-03 21:34:15
...
procedureTForm1.FormCreate(Sender:TObject); begin AdvStringGrid1.FixedRows:=2; AdvStringGrid1.SaveFixedCells:= false ; AdvStringGrid1.MergeCells(1,0,2,1); AdvStringGrid1.MergeCells(3,0,2,1); AdvStringGrid1.Cells[1,0]:= 'palign="center"bIde
- procedure TForm1.FormCreate(Sender: TObject);
- begin
- AdvStringGrid1.FixedRows:=2;
- AdvStringGrid1.SaveFixedCells := false;
- AdvStringGrid1.MergeCells(1,0,2,1);
- AdvStringGrid1.MergeCells(3,0,2,1);
-
AdvStringGrid1.Cells[1,0] := '
Identification
'; - AdvStringGrid1.Cells[1,1] := 'Brand';
- AdvStringGrid1.Cells[2,1] := 'Type';
- AdvStringGrid1.Cells[3,1] := 'CC';
- AdvStringGrid1.Cells[4,1] := 'Pk';
-
AdvStringGrid1.Cells[3,0] := '
Power
'; - AdvStringGrid1.BtnEdit.ButtonWidth := 24;
- end;
推荐阅读
-
php扩展开发笔记(2)多个源码文件的配置和编译
-
四川传媒学院2014年艺术类成绩查询 PHP组合查询多条件查询实例代码第1/2页
-
Yii2使用小技巧之通过 Composer 添加 FontAwesome 字体资源_PHP
-
php遍历数组$arr,请教下面这个$arr数组的结构是什么样的,如何输出遍历输出结果: 1 2 3
-
PHP中根本符号及使用方法
-
struts2 action跳转调用另一个程序
-
Struts要用的jar 博客分类: Struts2 StrutsApache
-
Struts要用的jar 博客分类: Struts2 StrutsApache
-
Java 中的正则表达式 博客分类: Java基础笔记 正则表达式JavaUnixF#J2SE
-
Yii2-Redis使用初记