SetClientSize sets the size of the inner bounding box of the *WindowBase, excluding decorations.
(value Size)
| 1863 | // SetClientSize sets the size of the inner bounding box of the *WindowBase, |
| 1864 | // excluding decorations. |
| 1865 | func (wb *WindowBase) SetClientSize(value Size) error { |
| 1866 | return wb.SetClientSizePixels(wb.SizeFrom96DPI(value)) |
| 1867 | } |
| 1868 | |
| 1869 | // SetClientSizePixels sets the size of the inner bounding box of the *WindowBase, |
| 1870 | // excluding decorations. |
nothing calls this directly
no test coverage detected