Return True if the pixel at x,y is transparent.
(self, x, y)
| 4655 | return data |
| 4656 | |
| 4657 | def transparency_get(self, x, y): |
| 4658 | """Return True if the pixel at x,y is transparent.""" |
| 4659 | return self.tk.getboolean(self.tk.call( |
| 4660 | self.name, 'transparency', 'get', x, y)) |
| 4661 | |
| 4662 | def transparency_set(self, x, y, boolean): |
| 4663 | """Set the transparency of the pixel at x,y.""" |