Gambas/剪贴板
外观
返回 至 Gambas
此程序向您展示在 Gambas 中使用剪贴板。您需要 2 个命令按钮和 2 个文本区域来运行程序。
代码
' Gambas class file PUBLIC SUB Button1_Click() Clipboard.Copy (Textarea1.Text) 'Copy Text into the Clipboard END PUBLIC SUB Button2_Click() Textarea2.Text = Clipboard.Paste () 'get the text out of the clipboard END