Delphi StringGrid 实例2:1、获取 StringGrid 的行数、列数; 2、给单元赋值


本文整理自网络,侵删。

 
StringGrid 实例2:1、获取 StringGrid 的行数、列数; 2、给单元赋值.
实例2:

本例功能:
1、获取 StringGrid 的行数、列数;
2、给单元赋值.

运行效果图:

//示例代码:

//获取总列数,和总行数 

procedure TForm12.Button1Click(Sender: TObject);

var

     cCount,rCount: Integer;

begin

     cCount := StringGrid1.ColumnCount; {获取总列数}

     rCount := StringGrid1.RowCount; {获取总行数}

     Caption := Format('总列数: %d ,总行数: %d', [cCount, rCount]); {显示在标题}

end;

//给每一个单元格赋值 

     procedure TForm12.Button2Click(Sender: TObject);

var

     c,r: Integer;

begin

     for c := 0 to StringGrid1.ColumnCount - 1 do

        for r := 0 to StringGrid1.RowCount - 1 do

           StringGrid1.Cells[c,r] := Format('%d,%d', [c,r]);

end;

end.

来源:https://www.cnblogs.com/lingzhiwen/p/3321951.html

相关阅读 >>

Delphi tdirectory.getdirectories

Delphi入门语法

Delphi中调用api函数exitwindowsex可以实现系统的关机,注销,和重启

Delphi 将对象转换为json字符串或tjsonobject

Delphi 临时文件路径(支持安卓、ios)

Delphi 从流数据获知文件类型

Delphi 取bmp图片宽高

Delphi格式化函数format、formatdatetime和formatfloat

Delphi xe tbitmap支持gif,成为具有jpg,gif,bmp,ico,gif五种显示功能的图片控件

Delphi通过idsmtp发送邮件的简单代码

更多相关阅读请进入《Delphi》频道 >>



打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,您说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

分享从这里开始,精彩与您同在

评论

管理员已关闭评论功能...