EMU length indicated by the combined `w:w` and `w:type` attrs.
(self)
| 407 | |
| 408 | @property |
| 409 | def width(self) -> Length | None: |
| 410 | """EMU length indicated by the combined `w:w` and `w:type` attrs.""" |
| 411 | if self.type != "dxa": |
| 412 | return None |
| 413 | return Twips(self.w) |
| 414 | |
| 415 | @width.setter |
| 416 | def width(self, value: Length): |