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