Become owner of X selection. A keyword parameter selection specifies the name of the selection (default PRIMARY).
(self, **kw)
| 1045 | + (self._w, name)) |
| 1046 | |
| 1047 | def selection_own(self, **kw): |
| 1048 | """Become owner of X selection. |
| 1049 | |
| 1050 | A keyword parameter selection specifies the name of |
| 1051 | the selection (default PRIMARY).""" |
| 1052 | self.tk.call(('selection', 'own') + |
| 1053 | self._options(kw) + (self._w,)) |
| 1054 | |
| 1055 | def selection_own_get(self, **kw): |
| 1056 | """Return owner of X selection. |