A member of the :ref:`WdLineSpacing` enumeration indicating how the value of :attr:`line_spacing` should be interpreted. Assigning any of the :ref:`WdLineSpacing` members :attr:`SINGLE`, :attr:`DOUBLE`, or :attr:`ONE_POINT_FIVE` will cause the value of :attr:`line_sp
(self)
| 132 | |
| 133 | @property |
| 134 | def line_spacing_rule(self): |
| 135 | """A member of the :ref:`WdLineSpacing` enumeration indicating how the value of |
| 136 | :attr:`line_spacing` should be interpreted. |
| 137 | |
| 138 | Assigning any of the :ref:`WdLineSpacing` members :attr:`SINGLE`, |
| 139 | :attr:`DOUBLE`, or :attr:`ONE_POINT_FIVE` will cause the value of |
| 140 | :attr:`line_spacing` to be updated to produce the corresponding line spacing. |
| 141 | """ |
| 142 | pPr = self._element.pPr |
| 143 | if pPr is None: |
| 144 | return None |
| 145 | return self._line_spacing_rule(pPr.spacing_line, pPr.spacing_lineRule) |
| 146 | |
| 147 | @line_spacing_rule.setter |
| 148 | def line_spacing_rule(self, value): |
nothing calls this directly
no test coverage detected