Clear the data in the Tk clipboard. A widget specified for the optional displayof keyword argument specifies the target display.
(self, **kw)
| 1039 | return self.tk.call(('clipboard', 'get') + self._options(kw)) |
| 1040 | |
| 1041 | def clipboard_clear(self, **kw): |
| 1042 | """Clear the data in the Tk clipboard. |
| 1043 | |
| 1044 | A widget specified for the optional displayof keyword |
| 1045 | argument specifies the target display.""" |
| 1046 | if 'displayof' not in kw: kw['displayof'] = self._w |
| 1047 | self.tk.call(('clipboard', 'clear') + self._options(kw)) |
| 1048 | |
| 1049 | def clipboard_append(self, string, **kw): |
| 1050 | """Append STRING to the Tk clipboard. |