1 write to hScrollBar
System.Workflow.ComponentModel (1)
AuthoringOM\Design\WorkflowView.cs (1)
1934this.hScrollBar = newHorizScrollBar;
25 references to hScrollBar
System.Workflow.ComponentModel (25)
AuthoringOM\Design\WorkflowView.cs (25)
569return this.hScrollBar; 644EnsureScrollBars(this.hScrollBar, this.toolContainer.ScrollBar as VScrollBar); 671EnsureScrollBars(this.hScrollBar, new VScrollBar()); 1800if (hScrollBar.Maximum != maximumScrollSize.Width) 1801hScrollBar.Maximum = maximumScrollSize.Width; 1805if (hScrollBar.LargeChange != largeChangeSize.Width) 1807hScrollBar.SmallChange = largeChangeSize.Width / 15; 1808hScrollBar.LargeChange = largeChangeSize.Width + 1; 1816int xMaxScrollPos = maximumScrollSize.Width - hScrollBar.LargeChange; 1818if (hScrollBar.Value > xMaxScrollPos) 1819hScrollBar.Value = xMaxScrollPos; 1828bool hScrollBarVisible = hScrollBar.Visible; 1829if (Controls.Contains(hScrollBar)) 1830hScrollBar.Visible = (hScrollBar.Maximum > currentSize.Width); 1836if (hScrollBarVisible != hScrollBar.Visible || vScrollBar.Visible != vScrollBarVisible) 1925if (this.hScrollBar != newHorizScrollBar) 1927if (this.hScrollBar != null) 1929this.hScrollBar.ValueChanged -= new EventHandler(OnScroll); 1930if (Controls.Contains(this.hScrollBar)) 1931Controls.Remove(this.hScrollBar); 1935if (this.hScrollBar.Parent == null) 1937this.hScrollBar.TabStop = false; 1938Controls.Add(this.hScrollBar); 1959this.hScrollBar.ValueChanged += new EventHandler(OnScroll);