Select a Null bitmap into this wxDC instance.
(self)
| 331 | self.IsSelected = True |
| 332 | |
| 333 | def unselect(self): |
| 334 | """Select a Null bitmap into this wxDC instance.""" |
| 335 | if sys.platform == 'win32': |
| 336 | self.dc.SelectObject(wx.NullBitmap) |
| 337 | self.IsSelected = False |
| 338 | |
| 339 | def set_foreground(self, fg, isRGBA=None): |
| 340 | # docstring inherited |
no outgoing calls
no test coverage detected