gpt4 book ai didi

row - Janus GridEx : Add custom row and select a specific row

转载 作者:行者123 更新时间:2023-12-01 09:36:09 30 4
gpt4 key购买 nike

我的表单上有 GridEx 对象并且...

  1. 我想用 for...next 循环在其中添加一些项目。实际上我找不到任何方法来添加带有自定义数据的新行。

  2. 我想在那个 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

关于row - Janus GridEx : Add custom row and select a specific row,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7495500/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com