如何删除数据网格中的行?

How to delete Line in the datagrid?

我需要从数据网格组中删除前三行 "DFP",剩下的行分别放在第一行、第二行和第三行。

put the dgHilitedLines of group "DFP"  into theLine
   DeleteLine theLine

我使用了上面的代码,但是它显示了以下错误

按钮 "Pass":第 22 行执行错误(处理程序:找不到处理程序)靠近 "DeleteLine",字符 1

Daatgrids 比普通控件有更多的属性,参见:http://livecode.wikia.com/wiki/Datagrid_API

我建议你使用dgText 属性,像下面的代码:

put the dgText of group "DFP" into temp
delete line 1 to 2 of temp
set the dgText of group "DFP" to temp