13 references to OrientationType
UIAutomationClient (5)
MS\Internal\Automation\Schema.cs (3)
137
private static object ConvertToOrientationType(object value) { return (
OrientationType
)value; }
292
new AutomationPropertyInfo( convertToOrientationType, AutomationElement.OrientationProperty, typeof(
OrientationType
),
OrientationType
.None ),
System\Windows\Automation\AutomationElement.cs (2)
1448
public
OrientationType
Orientation { get { return (
OrientationType
) _el.GetPatternPropertyValue(OrientationProperty, _useCache); } }
UIAutomationClientSideProviders (8)
MS\Internal\AutomationProxies\WindowsScrollBar.cs (2)
218
return IsScrollBarVertical(_hwnd, _sbFlag) ?
OrientationType
.Vertical :
OrientationType
.Horizontal;
MS\Internal\AutomationProxies\WindowsSlider.cs (2)
90
return IsVerticalSlider() ?
OrientationType
.Vertical :
OrientationType
.Horizontal;
MS\Internal\AutomationProxies\WindowsSysHeader.cs (2)
193
return Misc.IsBitSet(WindowStyle, NativeMethods.HDS_VERT) ?
OrientationType
.Vertical :
OrientationType
.Horizontal;
MS\Internal\AutomationProxies\WindowsTab.cs (2)
150
return IsVerticalTab() ?
OrientationType
.Vertical :
OrientationType
.Horizontal;