1 write to vScrollBar
System.Workflow.ComponentModel (1)
AuthoringOM\Design\WorkflowView.cs (1)
1951this.vScrollBar = newVertScrollBar;
23 references to vScrollBar
System.Workflow.ComponentModel (23)
AuthoringOM\Design\WorkflowView.cs (23)
577return this.vScrollBar; 1802if (vScrollBar.Maximum != maximumScrollSize.Height) 1803vScrollBar.Maximum = maximumScrollSize.Height; 1810if (vScrollBar.LargeChange != largeChangeSize.Height) 1812vScrollBar.SmallChange = largeChangeSize.Height / 15; 1813vScrollBar.LargeChange = largeChangeSize.Height + 1; 1821int yMaxScrollPos = maximumScrollSize.Height - vScrollBar.LargeChange; 1823if (vScrollBar.Value > yMaxScrollPos) 1824vScrollBar.Value = yMaxScrollPos; 1832bool vScrollBarVisible = vScrollBar.Visible; 1833if (Controls.Contains(vScrollBar)) 1834vScrollBar.Visible = (vScrollBar.Maximum > currentSize.Height); 1836if (hScrollBarVisible != hScrollBar.Visible || vScrollBar.Visible != vScrollBarVisible) 1942if (this.vScrollBar != newVertScrollBar) 1944if (this.vScrollBar != null) 1946this.vScrollBar.ValueChanged -= new EventHandler(OnScroll); 1947if (Controls.Contains(this.vScrollBar)) 1948Controls.Remove(this.vScrollBar); 1952if (this.vScrollBar.Parent == null) 1954this.vScrollBar.TabStop = false; 1955Controls.Add(this.vScrollBar); 1960this.vScrollBar.ValueChanged += new EventHandler(OnScroll);