26 references to ScrollPatternIdentifiers
PresentationCore (2)
System\Windows\Automation\Peers\AutomationPeer.cs (2)
2369
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)
141
bool scrollHorizontally = (horizontalPercent != (double)
ScrollPatternIdentifiers
.NoScroll);
142
bool scrollVertically = (verticalPercent != (double)
ScrollPatternIdentifiers
.NoScroll);
178
if (!HorizontallyScrollable) { return
ScrollPatternIdentifiers
.NoScroll; }
192
if (!VerticallyScrollable) { return
ScrollPatternIdentifiers
.NoScroll; }
251
if (!AutomationIsScrollable(extent, viewport)) { return
ScrollPatternIdentifiers
.NoScroll; }
294
ScrollPatternIdentifiers
.HorizontallyScrollableProperty,
301
ScrollPatternIdentifiers
.VerticallyScrollableProperty,
308
ScrollPatternIdentifiers
.HorizontalViewSizeProperty,
315
ScrollPatternIdentifiers
.VerticalViewSizeProperty,
322
ScrollPatternIdentifiers
.HorizontalScrollPercentProperty,
329
ScrollPatternIdentifiers
.VerticalScrollPercentProperty,
UIAutomationClient (7)
System\Windows\Automation\ScrollPattern.cs (7)
49
public static readonly AutomationPattern Pattern =
ScrollPatternIdentifiers
.Pattern;
52
public static readonly AutomationProperty HorizontalScrollPercentProperty =
ScrollPatternIdentifiers
.HorizontalScrollPercentProperty;
55
public static readonly AutomationProperty HorizontalViewSizeProperty =
ScrollPatternIdentifiers
.HorizontalViewSizeProperty;
58
public static readonly AutomationProperty VerticalScrollPercentProperty =
ScrollPatternIdentifiers
.VerticalScrollPercentProperty;
61
public static readonly AutomationProperty VerticalViewSizeProperty =
ScrollPatternIdentifiers
.VerticalViewSizeProperty;
64
public static readonly AutomationProperty HorizontallyScrollableProperty =
ScrollPatternIdentifiers
.HorizontallyScrollableProperty;
67
public static readonly AutomationProperty VerticallyScrollableProperty =
ScrollPatternIdentifiers
.VerticallyScrollableProperty;
UIAutomationClientSideProviders (5)
MS\Internal\AutomationProxies\WindowsTab.cs (5)
152
else if (idProp ==
ScrollPatternIdentifiers
.HorizontalScrollPercentProperty)
156
else if (idProp ==
ScrollPatternIdentifiers
.HorizontallyScrollableProperty)
160
else if (idProp ==
ScrollPatternIdentifiers
.HorizontalViewSizeProperty)
311
&& aidProps[0] ==
ScrollPatternIdentifiers
.HorizontalScrollPercentProperty)
330
&& aidProps[0] ==
ScrollPatternIdentifiers
.HorizontalScrollPercentProperty)
UIAutomationTypes (1)
System\Windows\Automation\ControlType.cs (1)
237
new AutomationPattern[] {
ScrollPatternIdentifiers
.Pattern } ,