SetVerticalScrollbarOverlapping specifies whether the vertical scrollbar overlaps the content area
(state bool)
| 176 | |
| 177 | // SetVerticalScrollbarOverlapping specifies whether the vertical scrollbar overlaps the content area |
| 178 | func (s *Scroller) SetVerticalScrollbarOverlapping(state bool) { |
| 179 | |
| 180 | s.style.VerticalScrollbar.OverlapContent = state |
| 181 | s.Update() |
| 182 | } |
| 183 | |
| 184 | // VerticalScrollbarOverlapping returns whether the vertical scrollbar overlaps the content area |
| 185 | func (s *Scroller) VerticalScrollbarOverlapping() bool { |