{***************************************************************************} { } { DelphiUIAutomation } { } { Copyright 2015 JHC Systems Limited } { } {***************************************************************************} { } { Licensed under the Apache License, Version 2.0 (the "License"); } { you may not use this file except in compliance with the License. } { You may obtain a copy of the License at } { } { http://www.apache.org/licenses/LICENSE-2.0 } { } { Unless required by applicable law or agreed to in writing, software } { distributed under the License is distributed on an "AS IS" BASIS, } { WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. } { See the License for the specific language governing permissions and } { limitations under the License. } { } {***************************************************************************} unit DelphiUIAutomation.PropertyIDs; interface const // Automation Element Property Identifiers UIA_RuntimeIdPropertyId = 30000; UIA_BoundingRectanglePropertyId = 30001; UIA_ProcessIdPropertyId = 30002; UIA_ControlTypePropertyId = 30003; UIA_LocalizedControlTypePropertyId = 30004; UIA_NamePropertyId = 30005; UIA_AcceleratorKeyPropertyId = 30006; UIA_AccessKeyPropertyId = 30007; UIA_HasKeyboardFocusPropertyId = 30008; UIA_IsKeyboardFocusablePropertyId = 30009; UIA_IsEnabledPropertyId = 30010; UIA_AutomationIdPropertyId = 30011; UIA_ClassNamePropertyId = 30012; UIA_HelpTextPropertyId = 30013; UIA_ClickablePointPropertyId = 30014; UIA_CulturePropertyId = 30015; UIA_IsControlElementPropertyId = 30016; UIA_IsContentElementPropertyId = 30017; UIA_LabeledByPropertyId = 30018; UIA_IsPasswordPropertyId = 30019; UIA_NativeWindowHandlePropertyId = 30020; UIA_ItemTypePropertyId = 30021; UIA_IsOffscreenPropertyId = 30022; UIA_OrientationPropertyId = 30023; UIA_FrameworkIdPropertyId = 30024; UIA_IsRequiredForFormPropertyId = 30025; UIA_ItemStatusPropertyId = 30026; UIA_IsDockPatternAvailablePropertyId = 30027; UIA_IsExpandCollapsePatternAvailablePropertyId = 30028; UIA_IsGridItemPatternAvailablePropertyId = 30029; UIA_IsGridPatternAvailablePropertyId = 30030; UIA_IsInvokePatternAvailablePropertyId = 30031; UIA_IsMultipleViewPatternAvailablePropertyId = 30032; UIA_IsRangeValuePatternAvailablePropertyId = 30033; UIA_IsScrollPatternAvailablePropertyId = 30034; UIA_IsScrollItemPatternAvailablePropertyId = 30035; UIA_IsSelectionItemPatternAvailablePropertyId = 30036; UIA_IsSelectionPatternAvailablePropertyId = 30037; UIA_IsTablePatternAvailablePropertyId = 30038; UIA_IsTableItemPatternAvailablePropertyId = 30039; UIA_IsTextPatternAvailablePropertyId = 30040; UIA_IsTogglePatternAvailablePropertyId = 30041; UIA_IsTransformPatternAvailablePropertyId = 30042; UIA_IsValuePatternAvailablePropertyId = 30043; UIA_IsWindowPatternAvailablePropertyId = 30044; UIA_WindowIsModalPropertyId = 30077; UIA_WindowIsTopmostPropertyId = 30078; UIA_AriaRolePropertyId = 30101; UIA_AriaPropertiesPropertyId = 30102; UIA_IsDataValidForFormPropertyId = 30103; UIA_ControllerForPropertyId = 30104; UIA_DescribedByPropertyId = 30105; UIA_FlowsToPropertyId = 30106; UIA_ProviderDescriptionPropertyId = 30107; UIA_LiveSettingPropertyId = 30135; implementation end.