我如何复制选定行的内容

How i copy the content of selected row

如何连续复制选中的内容。在以下代码的帮助下,我得到了该行的行号。但我不知道要复制特定行的内容

on mouseUp
   put the dgHilitedLines of group "data" into theLine
   answer theLine
end mouseUp

设置全局剪贴板数据属性设置剪贴板:

on mouseUp
   put the dgHilitedLines of group "data" into myLine
   set the clipboarddata["text"] to line myLine of the dgText \
     of grp "data"
end mouseUp