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;