Bottom margin of cell.
(self)
| 249 | |
| 250 | @property |
| 251 | def margin_bottom(self) -> Length: |
| 252 | """Bottom margin of cell.""" |
| 253 | return self._tc.marB |
| 254 | |
| 255 | @margin_bottom.setter |
| 256 | def margin_bottom(self, margin_bottom: Length | None): |
nothing calls this directly
no test coverage detected