NewVList creates and returns a pointer to a new vertical list panel with the specified dimensions
(width, height float32)
| 53 | // NewVList creates and returns a pointer to a new vertical list panel |
| 54 | // with the specified dimensions |
| 55 | func NewVList(width, height float32) *List { |
| 56 | |
| 57 | return newList(true, width, height) |
| 58 | } |
| 59 | |
| 60 | // NewHList creates and returns a pointer to a new horizontal list panel |
| 61 | // with the specified dimensions |
no test coverage detected