SetWidth sets this panel external width in pixels. The internal panel areas and positions are recalculated
(width float32)
| 269 | // SetWidth sets this panel external width in pixels. |
| 270 | // The internal panel areas and positions are recalculated |
| 271 | func (p *Panel) SetWidth(width float32) { |
| 272 | |
| 273 | p.SetSize(width, p.height) |
| 274 | } |
| 275 | |
| 276 | // SetHeight sets this panel external height in pixels. |
| 277 | // The internal panel areas and positions are recalculated |
no test coverage detected