Get the UI element size in ``NormalizedCoordinate`` system. Returns: 2-:obj:`list`: size [width, height] in range of 0 ~ 1.
(self)
| 813 | |
| 814 | @volatile_attribute |
| 815 | def get_size(self): |
| 816 | """ |
| 817 | Get the UI element size in ``NormalizedCoordinate`` system. |
| 818 | |
| 819 | Returns: |
| 820 | 2-:obj:`list`: size [width, height] in range of 0 ~ 1. |
| 821 | """ |
| 822 | |
| 823 | return self.attr('size') |
| 824 | |
| 825 | @volatile_attribute |
| 826 | def get_bounds(self): |
no test coverage detected