Return the width ratios. This is *None* if no width ratios have been set explicitly.
(self)
| 113 | self._col_width_ratios = width_ratios |
| 114 | |
| 115 | def get_width_ratios(self): |
| 116 | """ |
| 117 | Return the width ratios. |
| 118 | |
| 119 | This is *None* if no width ratios have been set explicitly. |
| 120 | """ |
| 121 | return self._col_width_ratios |
| 122 | |
| 123 | def set_height_ratios(self, height_ratios): |
| 124 | """ |
no outgoing calls