Get window content position and size on the screen as UI rect. This function has the same effect as #getContentRect(), but returned rect has screen relative coordinates. @return UI content rect
()
| 130 | * @return UI content rect |
| 131 | */ |
| 132 | public IRect getContentRectAbsolute() { |
| 133 | IRect windowRect = getWindowRect(); |
| 134 | return getContentRect().offset(windowRect._left, windowRect._top); |
| 135 | } |
| 136 | |
| 137 | /** |
| 138 | * <p>Set window position on the screen.</p> |
no test coverage detected