This repository has been archived by the owner on Mar 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpropertyidentifiers.go
117 lines (115 loc) · 6.45 KB
/
propertyidentifiers.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
package w32uiautomation
type PROPERTYID uintptr
const (
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_ValueValuePropertyId = 30045
UIA_ValueIsReadOnlyPropertyId = 30046
UIA_RangeValueValuePropertyId = 30047
UIA_RangeValueIsReadOnlyPropertyId = 30048
UIA_RangeValueMinimumPropertyId = 30049
UIA_RangeValueMaximumPropertyId = 30050
UIA_RangeValueLargeChangePropertyId = 30051
UIA_RangeValueSmallChangePropertyId = 30052
UIA_ScrollHorizontalScrollPercentPropertyId = 30053
UIA_ScrollHorizontalViewSizePropertyId = 30054
UIA_ScrollVerticalScrollPercentPropertyId = 30055
UIA_ScrollVerticalViewSizePropertyId = 30056
UIA_ScrollHorizontallyScrollablePropertyId = 30057
UIA_ScrollVerticallyScrollablePropertyId = 30058
UIA_SelectionSelectionPropertyId = 30059
UIA_SelectionCanSelectMultiplePropertyId = 30060
UIA_SelectionIsSelectionRequiredPropertyId = 30061
UIA_GridRowCountPropertyId = 30062
UIA_GridColumnCountPropertyId = 30063
UIA_GridItemRowPropertyId = 30064
UIA_GridItemColumnPropertyId = 30065
UIA_GridItemRowSpanPropertyId = 30066
UIA_GridItemColumnSpanPropertyId = 30067
UIA_GridItemContainingGridPropertyId = 30068
UIA_DockDockPositionPropertyId = 30069
UIA_ExpandCollapseExpandCollapseStatePropertyId = 30070
UIA_MultipleViewCurrentViewPropertyId = 30071
UIA_MultipleViewSupportedViewsPropertyId = 30072
UIA_WindowCanMaximizePropertyId = 30073
UIA_WindowCanMinimizePropertyId = 30074
UIA_WindowWindowVisualStatePropertyId = 30075
UIA_WindowWindowInteractionStatePropertyId = 30076
UIA_WindowIsModalPropertyId = 30077
UIA_WindowIsTopmostPropertyId = 30078
UIA_SelectionItemIsSelectedPropertyId = 30079
UIA_SelectionItemSelectionContainerPropertyId = 30080
UIA_TableRowHeadersPropertyId = 30081
UIA_TableColumnHeadersPropertyId = 30082
UIA_TableRowOrColumnMajorPropertyId = 30083
UIA_TableItemRowHeaderItemsPropertyId = 30084
UIA_TableItemColumnHeaderItemsPropertyId = 30085
UIA_ToggleToggleStatePropertyId = 30086
UIA_TransformCanMovePropertyId = 30087
UIA_TransformCanResizePropertyId = 30088
UIA_TransformCanRotatePropertyId = 30089
UIA_IsLegacyIAccessiblePatternAvailablePropertyId = 30090
UIA_LegacyIAccessibleChildIdPropertyId = 30091
UIA_LegacyIAccessibleNamePropertyId = 30092
UIA_LegacyIAccessibleValuePropertyId = 30093
UIA_LegacyIAccessibleDescriptionPropertyId = 30094
UIA_LegacyIAccessibleRolePropertyId = 30095
UIA_LegacyIAccessibleStatePropertyId = 30096
UIA_LegacyIAccessibleHelpPropertyId = 30097
UIA_LegacyIAccessibleKeyboardShortcutPropertyId = 30098
UIA_LegacyIAccessibleSelectionPropertyId = 30099
UIA_LegacyIAccessibleDefaultActionPropertyId = 30100
UIA_AriaRolePropertyId = 30101
UIA_AriaPropertiesPropertyId = 30102
UIA_IsDataValidForFormPropertyId = 30103
UIA_ControllerForPropertyId = 30104
UIA_DescribedByPropertyId = 30105
UIA_FlowsToPropertyId = 30106
UIA_ProviderDescriptionPropertyId = 30107
UIA_IsItemContainerPatternAvailablePropertyId = 30108
UIA_IsVirtualizedItemPatternAvailablePropertyId = 30109
UIA_IsSynchronizedInputPatternAvailablePropertyId = 30110
)