我需要从数据网格组中删除前三行" DFP"其余的线分别位于第1和第2位。
put the dgHilitedLines of group "DFP" into theLine
DeleteLine theLine
我使用了上面的代码,但它显示以下错误
按钮"传递":执行错误在第22行(处理程序:无法找到处理程序)附近" DeleteLine",char 1
答案 0 :(得分: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