SetHorizontalScrollbarOverlapping specifies whether the horizontal scrollbar overlaps the content area
(state bool)
| 189 | |
| 190 | // SetHorizontalScrollbarOverlapping specifies whether the horizontal scrollbar overlaps the content area |
| 191 | func (s *Scroller) SetHorizontalScrollbarOverlapping(state bool) { |
| 192 | |
| 193 | s.style.HorizontalScrollbar.OverlapContent = state |
| 194 | s.Update() |
| 195 | } |
| 196 | |
| 197 | // HorizontalScrollbarOverlapping returns whether the horizontal scrollbar overlaps the content area |
| 198 | func (s *Scroller) HorizontalScrollbarOverlapping() bool { |