Property to access the column height self.css['ch'] style attribute.
(self)
| 1975 | cw = property(_get_cw, _set_cw) |
| 1976 | |
| 1977 | def _get_ch(self): |
| 1978 | """Property to access the column height self.css['ch'] style attribute.""" |
| 1979 | return self.css('ch') |
| 1980 | def _set_ch(self, ch): |
| 1981 | self.style['ch'] = ch |
| 1982 | ch = property(_get_ch, _set_ch) |