26 references to ScrollPatternIdentifiers
PresentationCore (2)
System\Windows\Automation\Peers\AutomationPeer.cs (2)
2370
s_patternInfo[
ScrollPatternIdentifiers
.Pattern.Id] = new PatternInfo(
ScrollPatternIdentifiers
.Pattern.Id, new WrapObject(ScrollProviderWrapper.Wrap), PatternInterface.Scroll);
PresentationFramework (11)
System\Windows\Automation\Peers\ScrollViewerAutomationPeer.cs (11)
142
bool scrollHorizontally = (horizontalPercent != (double)
ScrollPatternIdentifiers
.NoScroll);
143
bool scrollVertically = (verticalPercent != (double)
ScrollPatternIdentifiers
.NoScroll);
179
if (!HorizontallyScrollable) { return
ScrollPatternIdentifiers
.NoScroll; }
193
if (!VerticallyScrollable) { return
ScrollPatternIdentifiers
.NoScroll; }
252
if (!AutomationIsScrollable(extent, viewport)) { return
ScrollPatternIdentifiers
.NoScroll; }
295
ScrollPatternIdentifiers
.HorizontallyScrollableProperty,
302
ScrollPatternIdentifiers
.VerticallyScrollableProperty,
309
ScrollPatternIdentifiers
.HorizontalViewSizeProperty,
316
ScrollPatternIdentifiers
.VerticalViewSizeProperty,
323
ScrollPatternIdentifiers
.HorizontalScrollPercentProperty,
330
ScrollPatternIdentifiers
.VerticalScrollPercentProperty,
UIAutomationClient (7)
System\Windows\Automation\ScrollPattern.cs (7)
50
public static readonly AutomationPattern Pattern =
ScrollPatternIdentifiers
.Pattern;
53
public static readonly AutomationProperty HorizontalScrollPercentProperty =
ScrollPatternIdentifiers
.HorizontalScrollPercentProperty;
56
public static readonly AutomationProperty HorizontalViewSizeProperty =
ScrollPatternIdentifiers
.HorizontalViewSizeProperty;
59
public static readonly AutomationProperty VerticalScrollPercentProperty =
ScrollPatternIdentifiers
.VerticalScrollPercentProperty;
62
public static readonly AutomationProperty VerticalViewSizeProperty =
ScrollPatternIdentifiers
.VerticalViewSizeProperty;
65
public static readonly AutomationProperty HorizontallyScrollableProperty =
ScrollPatternIdentifiers
.HorizontallyScrollableProperty;
68
public static readonly AutomationProperty VerticallyScrollableProperty =
ScrollPatternIdentifiers
.VerticallyScrollableProperty;
UIAutomationClientSideProviders (5)
MS\Internal\AutomationProxies\WindowsTab.cs (5)
153
else if (idProp ==
ScrollPatternIdentifiers
.HorizontalScrollPercentProperty)
157
else if (idProp ==
ScrollPatternIdentifiers
.HorizontallyScrollableProperty)
161
else if (idProp ==
ScrollPatternIdentifiers
.HorizontalViewSizeProperty)
312
&& aidProps[0] ==
ScrollPatternIdentifiers
.HorizontalScrollPercentProperty)
331
&& aidProps[0] ==
ScrollPatternIdentifiers
.HorizontalScrollPercentProperty)
UIAutomationTypes (1)
System\Windows\Automation\ControlType.cs (1)
238
new AutomationPattern[] {
ScrollPatternIdentifiers
.Pattern } ,