Gain factor to apply to the channel. Set to None to reset.
(self)
| 1681 | |
| 1682 | @Feat() |
| 1683 | def gain(self): |
| 1684 | """Gain factor to apply to the channel. |
| 1685 | |
| 1686 | Set to None to reset. |
| 1687 | """ |
| 1688 | fun = self.__get_fun('Get{}Gain') |
| 1689 | err, value = fun(RetValue('f64')) |
| 1690 | return value |
| 1691 | |
| 1692 | @gain.setter |
| 1693 | def gain(self, value): |