You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Source/ExcelDna.IntelliSense/UIMonitor/WinEvents.cs
+12-2Lines changed: 12 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,5 @@
1
1
usingSystem;
2
+
usingSystem.Collections.Generic;
2
3
usingSystem.ComponentModel;
3
4
usingSystem.Diagnostics;
4
5
usingSystem.Runtime.InteropServices;
@@ -63,7 +64,7 @@ public enum WinEvent : uint
63
64
EVENT_OBJECT_DESTROY=0x8001,// hwnd ID idChild is destroyed item
64
65
EVENT_OBJECT_SHOW=0x8002,// hwnd ID idChild is shown item
65
66
EVENT_OBJECT_HIDE=0x8003,// hwnd ID idChild is hidden item
66
-
EVENT_OBJECT_REORDER=0x8004,// hwnd ID idChild is parent of zordering children
67
+
EVENT_OBJECT_REORDER=0x8004,// hwnd ID idChild is parent of zordering children // NOTE: Gets fired constantly when an Excel function is selected in the function list
67
68
EVENT_OBJECT_FOCUS=0x8005,// hwnd ID idChild is focused item
68
69
EVENT_OBJECT_SELECTION=0x8006,// hwnd ID idChild is selected item (if only one), or idChild is OBJID_WINDOW if complex
69
70
EVENT_OBJECT_SELECTIONADD=0x8007,// hwnd ID idChild is item added
@@ -121,6 +122,8 @@ public enum WinEventObjectId : int
0 commit comments