Sets the length of the slider This measure excludes the padding of both ends. That is, the slider's length is this length minus the padding on both ends. The 'len' property is a number and may be specified as: - An int or float in the interval [0, inf]
(self)
| 180 | |
| 181 | @property |
| 182 | def len(self): |
| 183 | """ |
| 184 | Sets the length of the slider This measure excludes the padding |
| 185 | of both ends. That is, the slider's length is this length minus |
| 186 | the padding on both ends. |
| 187 | |
| 188 | The 'len' property is a number and may be specified as: |
| 189 | - An int or float in the interval [0, inf] |
| 190 | |
| 191 | Returns |
| 192 | ------- |
| 193 | int|float |
| 194 | """ |
| 195 | return self["len"] |
| 196 | |
| 197 | @len.setter |
| 198 | def len(self, val): |
no outgoing calls
no test coverage detected