我的表单上有 GridEx 对象,并且...
我想用 for...next 循环在其中添加一些项目。实际上我找不到任何方法来添加带有自定义数据的新行。
我想在那个 GridEx 对象中选择一个特定的行。例如:我要选择第 6 行,有没有类似 mygrid.rows(6).value 之类的东西?!
提前致谢...
grid
假设您有一个名为...的 GridEX 控件
添加新数据:
GridEXRow row = grid.AddItem();
row.BeginEdit();
row.Cells[0].Value = "Whatever"; // refer to columns by index or name
...
row.EndEdit();
要检索特定行:
GridEXRow row = grid.GetRow(5); // returns the 6th row
要选择特定行:
grid.MoveTo(5); // moves the selection to the 6th row
向名为 MyGridEX 的 gridex 添加新行:
object[] data = { "value0", "value1", "value2", ... };
this.MyGridEX.AddItem(data);
要选择特定行:
this.MyGridEX.GetRow(1); // select the second row