SetWidth sets the outer width of the *WindowBase, including decorations.
(value int)
| 1760 | |
| 1761 | // SetWidth sets the outer width of the *WindowBase, including decorations. |
| 1762 | func (wb *WindowBase) SetWidth(value int) error { |
| 1763 | return wb.SetWidthPixels(wb.IntFrom96DPI(value)) |
| 1764 | } |
| 1765 | |
| 1766 | // SetWidthPixels sets the outer width of the *WindowBase, including decorations. |
| 1767 | func (wb *WindowBase) SetWidthPixels(value int) error { |
nothing calls this directly
no test coverage detected