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