程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> Delphi >> Delphi TStringGrid 類(1)

Delphi TStringGrid 類(1)

編輯:Delphi

1。TStringGrid [1] - ColCount、RowCount、Cells

  cCount := StringGrid1.ColCount; {獲取總列數}

  rCount := StringGrid1.RowCount; {獲取總行數}

{給每個單元賦值}

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

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

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

 

2.DefaultColWidth、DefaultRowHeight、Col、Row

1、修改 StringGrid 單元的默認寬與高;
2、添加行和列;

{添加一行}
StringGrid1.RowCount := StringGrid1.RowCount + 1;

{添加一列}

 StringGrid1.ColCount := StringGrid1.ColCount + 1;

c := StringGrid1.Col; {當前列}  r := StringGrid1.Row; {當前行}

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

 

3.FixedCols、FixedRows、Color、FixedColor

實體列,實體行,顏色,實體顏色

 

4.GridLineWidth : 方格線

StringGrid1.GridLineWidth := StringGrid1.GridLineWidth + 1;

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved