ClientBoundsPixels returns the inner bounding box rectangle of the *WindowBase, excluding decorations.
()
| 1837 | // ClientBoundsPixels returns the inner bounding box rectangle of the *WindowBase, |
| 1838 | // excluding decorations. |
| 1839 | func (wb *WindowBase) ClientBoundsPixels() Rectangle { |
| 1840 | return windowClientBounds(wb.hWnd) |
| 1841 | } |
| 1842 | |
| 1843 | // sizeFromClientSizePixels calculates size from client size in native pixels. |
| 1844 | func (wb *WindowBase) sizeFromClientSizePixels(clientSize Size) Size { |
no test coverage detected