Sets the left margin (in px). The 'l' property is a number and may be specified as: - An int or float in the interval [0, inf] Returns ------- int|float
(self)
| 50 | |
| 51 | @property |
| 52 | def l(self): |
| 53 | """ |
| 54 | Sets the left margin (in px). |
| 55 | |
| 56 | The 'l' property is a number and may be specified as: |
| 57 | - An int or float in the interval [0, inf] |
| 58 | |
| 59 | Returns |
| 60 | ------- |
| 61 | int|float |
| 62 | """ |
| 63 | return self["l"] |
| 64 | |
| 65 | @l.setter |
| 66 | def l(self, val): |
no outgoing calls
no test coverage detected