Become owner of X selection. A keyword parameter selection specifies the name of the selection (default PRIMARY).
(self, **kw)
| 1140 | + (self._w, name)) |
| 1141 | |
| 1142 | def selection_own(self, **kw): |
| 1143 | """Become owner of X selection. |
| 1144 | |
| 1145 | A keyword parameter selection specifies the name of |
| 1146 | the selection (default PRIMARY).""" |
| 1147 | self.tk.call(('selection', 'own') + |
| 1148 | self._options(kw) + (self._w,)) |
| 1149 | |
| 1150 | def selection_own_get(self, **kw): |
| 1151 | """Return owner of X selection. |