public void EndScrollableSection(ref int scrollValue)
 {
     scroll.EndScrollableSection(ref scrollValue);
     scroll = null;
 }
 public void BeginScrollableSection(int scrollValue)
 {
     Debug.Assert(scroll == null);
     scroll = new Scroll(imgui, currentPosition, Width, GetRemainingHeight(), scrollValue);
 }