Imaging mode as a 3-element tuple (type, gain and submode).
(self)
| 110 | |
| 111 | @Feat() |
| 112 | def mode(self): |
| 113 | """Imaging mode as a 3-element tuple (type, gain and submode). |
| 114 | """ |
| 115 | _mode = self.coc.mode |
| 116 | return _mode & 0xFF, (_mode >> 8) & 0xFF, (_mode >> 16) & 0xFF |
| 117 | |
| 118 | @mode.setter |
| 119 | def mode(self, typ_gain_submode): |