SetContentHeight sets this panel content height to the specified dimension in pixels. The external size of the panel may increase or decrease to accommodate the new width
(height float32)
| 475 | // SetContentHeight sets this panel content height to the specified dimension in pixels. |
| 476 | // The external size of the panel may increase or decrease to accommodate the new width |
| 477 | func (p *Panel) SetContentHeight(height float32) { |
| 478 | |
| 479 | p.SetContentSize(p.content.Width, height) |
| 480 | } |
| 481 | |
| 482 | // MinWidth returns the minimum width of this panel (ContentWidth = 0) |
| 483 | func (p *Panel) MinWidth() float32 { |
no test coverage detected