如何从 wxHaskell 网格控件中提取数据?
我创建了一个 wxHaskell 网格控件,它显示良好,用户可以输入数据等。
如何以编程方式将数据写入其中也相当明显(gridSetCellValue
)。
但我如何从中读取数据呢?有 gridGetTable
这可能相关也可能不相关,但返回一个 GridTableBase
而我可以看到它是间接的指针类型,我在API中找不到任何东西来实际获取其中的数据。
I've created a wxHaskell grid control, and it displays fine, the user can enter data etc.
It's also fairly obvious how to programatically write data into it (gridSetCellValue
).
But how do I read the data from it? There's gridGetTable
which might or might not be relevant, but that returns a GridTableBase
and while I can see that it's indirectly a pointer type, I can't find anything in the API to actually get at the data in it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要获取特定单元格的数据,您只需使用 < code>gridGetCellValue,这显然是
gridSetCellValue
的对应部分。To get the data of a specific cell you can just use
gridGetCellValue
, which is the obvious counter part togridSetCellValue
.