Skip to content

FlaUI C# Parity Map

Generated by reflecting over the bundled FlaUI DLLs and diffing against the flaui Python package. Re-run with uv run python scripts/parity_audit.py.

Status key: โœ… covered ยท ๐ŸŸก partial (some public members unwrapped) ยท โŒ missing

Scope & how to read this

This map covers every public type in the three assemblies, but the wrapper deliberately mirrors only the user-facing FlaUI.Core surface โ€” automation elements, patterns, conditions, input, tools, capturing, overlay, identifiers, and event handlers. A large share of the โŒ missing count is out of scope by design, not a gap:

  • FlaUI.UIA2 / FlaUI.UIA3 types are framework adapters. Python selects a backend via UIAutomationTypes and reaches C# through the PythonNet bridge; the adapter classes (converters, COM-interop shims, native-method wrappers) are not re-wrapped 1:1.
  • Core infrastructure โ€” internal converters, *Extensions helper classes, COM interop, and abstract base plumbing โ€” is consumed indirectly and intentionally unwrapped.
  • Known intentional omission: CustomNavigation (GH-121) exists only in raw COM interop.

Treat ๐ŸŸก partial / โŒ missing rows in the FlaUI.Core element, pattern, condition, input, tool, capturing, overlay, and identifier folders as the actionable backlog; rows elsewhere are usually intentional. ๐ŸŸก can also be an API-shape difference (e.g. C# exposes a FooPattern property where Python exposes a foo() method), not a true gap.

Summary

Status Types %
โœ… Covered 168 33%
๐ŸŸก Partial 21 4%
โŒ Missing 317 62%
Total 506 100%

FlaUI.Core

AutomationElements

Type Kind Status Notes
AutomationElement class โœ…
AutomationElementExtensions class โŒ no Python class
Button class โœ…
Calendar class โœ…
CheckBox class โœ…
ComboBox class โœ…
ComboBoxItem class โœ…
DataGridView class โœ…
DataGridViewCell class โœ…
DataGridViewHeader class โœ…
DataGridViewHeaderItem class โœ…
DataGridViewRow class โœ…
DateTimePicker class โœ…
Grid class โœ…
GridCell class โœ…
GridHeader class โœ…
GridHeaderItem class โœ…
GridRow class โœ…
Label class โœ…
ListBox class โœ…
ListBoxItem class โœ…
Menu class ๐ŸŸก unwrapped: IsWin32Menu
MenuItem class โœ…
MenuItems class โŒ no Python class
ProgressBar class ๐ŸŸก unwrapped: RangeValuePattern
RadioButton class โœ…
Slider class โœ…
Spinner class โœ…
Tab class โœ…
TabItem class โœ…
TextBox class โœ…
Thumb class โœ…
TitleBar class โœ…
ToggleButton class โœ…
Tree class โœ…
TreeItem class โœ…
Window class โœ…

Capturing

Type Kind Status Notes
Capture class โœ…
CaptureImage class ๐ŸŸก unwrapped: BitmapImage, Settings
CaptureSettings class ๐ŸŸก unwrapped: OutputHeight, OutputScale, OutputWidth
CaptureUtilities class โŒ no Python class
ICaptureOverlay interface โŒ no Python class
InfoOverlay class โŒ no Python class
InfoOverlayPosition enum โŒ no Python class
MouseOverlay class โŒ no Python class
OverlayBase class โŒ no Python class
VideoFormat enum โœ…
VideoRecorder class ๐ŸŸก unwrapped: RecordTimeSpan
VideoRecorderSettings class ๐ŸŸก unwrapped: EncodeWithLowPriority, FrameRate, LogMissingFrames, TargetVideoPath, UseCompressedImages, VideoFormat (+2 more)

Conditions

Type Kind Status Notes
AndCondition class โŒ no Python class
BoolCondition class โŒ no Python class
ConditionBase class โŒ no Python class
ConditionFactory class โœ…
FalseCondition class โŒ no Python class
JunctionConditionBase class โŒ no Python class
NotCondition class โŒ no Python class
OrCondition class โŒ no Python class
PropertyCondition class โœ…
TrueCondition class โŒ no Python class

Core

Type Kind Status Notes
ActionDisposable class โŒ no Python class
Application class โœ…
AutomationBase class โœ…
AutomationElementXPathNavigator class ๐ŸŸก unwrapped: BaseURI, HasAttributes, IsEmptyElement, IsSamePosition, LocalName, MoveTo (+10 more)
AutomationPattern`2 class โŒ no Python class
AutomationProperty`1 class โŒ no Python class
AutomationType enum โœ…
CacheRequest class ๐ŸŸก unwrapped: Add
Debug class โŒ no Python class
FrameworkAutomationElementBase class โŒ no Python class
FrameworkType enum โœ…
IAutomationPattern`1 interface โŒ no Python class
IAutomationProperty`1 interface โŒ no Python class
IEventLibrary interface โŒ no Python class
IPatternLibrary interface โŒ no Python class
IPropertyLibrary interface โŒ no Python class
ITextAttributeLibrary interface โŒ no Python class
ITextRange interface โŒ no Python class
ITextRange2 interface โŒ no Python class
ITextRange3 interface โŒ no Python class
ITreeWalker interface โŒ no Python class
ITreeWalkerFactory interface โŒ no Python class

Definitions

Type Kind Status Notes
AnnotationType enum โŒ no Python class
AutomationElementMode enum โœ…
CoalesceEventsOptions enum โŒ no Python class
ConnectionRecoveryBehaviorOptions enum โŒ no Python class
ControlType enum โœ…
DockPosition enum โœ…
ExpandCollapseState enum โœ…
FrameworkIds class โŒ no Python class
HeadingLevel enum โŒ no Python class
LandmarkType enum โŒ no Python class
LiveSetting enum โŒ no Python class
NotificationKind enum โŒ no Python class
NotificationProcessing enum โŒ no Python class
OrientationType enum โŒ no Python class
PropertyConditionFlags enum โœ…
RowOrColumnMajor enum โœ…
ScrollAmount enum โœ…
StructureChangeType enum โŒ no Python class
StyleType enum โŒ no Python class
SupportedTextSelection enum โœ…
SynchronizedInputType enum โœ…
TextEditChangeType enum โŒ no Python class
TextPatternRangeEndpoint enum โœ…
TextUnit enum โœ…
ToggleState enum โœ…
TreeScope enum โœ…
TreeTraversalOptions enum โœ…
VisualEffects enum โŒ no Python class
WindowInteractionState enum โœ…
WindowVisualState enum โœ…
ZoomUnit enum โœ…

EventHandlers

Type Kind Status Notes
ActiveTextPositionChangedEventHandlerBase class โŒ no Python class
AutomationEventHandlerBase class โŒ no Python class
ElementEventHandlerBase class โŒ no Python class
EventHandlerBase class โŒ no Python class
FocusChangedEventHandlerBase class โŒ no Python class
NotificationEventHandlerBase class โŒ no Python class
PropertyChangedEventHandlerBase class โŒ no Python class
StructureChangedEventHandlerBase class โŒ no Python class
TextEditTextChangedEventHandlerBase class โŒ no Python class

Exceptions

Type Kind Status Notes
ElementNotAvailableException class โœ…
ElementNotEnabledException class โœ…
FlaUIException class โœ…
MethodNotSupportedException class โœ…
NoClickablePointException class โœ…
NotCachedException class โœ…
NotSupportedByFrameworkException class โœ…
NotSupportedException class โœ…
PatternNotCachedException class ๐ŸŸก unwrapped: GetObjectData, Pattern
PatternNotSupportedException class ๐ŸŸก unwrapped: GetObjectData, Pattern
PropertyNotCachedException class ๐ŸŸก unwrapped: GetObjectData, Property
PropertyNotSupportedException class ๐ŸŸก unwrapped: GetObjectData, Property
ProxyAssemblyNotLoadedException class โœ…

Identifiers

Type Kind Status Notes
ConvertibleIdentifierBase class โŒ no Python class
EventId class โœ…
IdentifierBase class โœ…
PatternId class โœ…
PropertyId class ๐ŸŸก unwrapped: GetCondition, SetConverter
TextAttributeId class ๐ŸŸก unwrapped: SetConverter

Infrastructure

Type Kind Status Notes
IAutomationElementEventIds interface โŒ no Python class
IAutomationElementEventSubscriber interface โŒ no Python class
IAutomationElementEventUnsubscriber interface โŒ no Python class
IAutomationElementFinder interface โŒ no Python class
IAutomationElementPatternAvailabilityPropertyIds interface โŒ no Python class
IAutomationElementPropertyIds interface โŒ no Python class
IPattern interface โŒ no Python class
PatternBase`1 class โŒ no Python class

Input

Type Kind Status Notes
Interpolation class โœ…
Keyboard class โœ…
Mouse class โœ…
MouseButton enum โœ…
Touch class โœ…
Wait class โœ…

Logging

Type Kind Status Notes
ConsoleLogger class โŒ no Python class
DebugLogger class โŒ no Python class
EventLogger class โŒ no Python class
ILogger interface โŒ no Python class
LogLevel enum โŒ no Python class
Logger class โŒ no Python class
LoggerBase class โŒ no Python class
NullLogger class โŒ no Python class
TraceLogger class โŒ no Python class

Overlay

Type Kind Status Notes
IOverlayManager interface โŒ no Python class
NullOverlayManager class โŒ no Python class
OverlayRectangleForm class โŒ no Python class
WinFormsOverlayManager class โŒ no Python class

PatternElements

Type Kind Status Notes
ExpandCollapseAutomationElement class โŒ no Python class
InvokeAutomationElement class ๐ŸŸก unwrapped: InvokePattern
SelectionItemAutomationElement class โœ…
ToggleAutomationElement class ๐ŸŸก unwrapped: TogglePattern

Patterns

Type Kind Status Notes
AnnotationPatternBase`1 class โŒ no Python class
DockPatternBase`1 class โŒ no Python class
DragPatternBase`1 class โŒ no Python class
DropTargetPatternBase`1 class โŒ no Python class
ExpandCollapsePatternBase`1 class โŒ no Python class
GridItemPatternBase`1 class โŒ no Python class
GridPatternBase`1 class โŒ no Python class
IAnnotationPattern interface โŒ no Python class
IAnnotationPatternPropertyIds interface โŒ no Python class
IDockPattern interface โŒ no Python class
IDockPatternPropertyIds interface โŒ no Python class
IDragPattern interface โŒ no Python class
IDragPatternEventIds interface โŒ no Python class
IDragPatternPropertyIds interface โŒ no Python class
IDropTargetPattern interface โŒ no Python class
IDropTargetPatternEventIds interface โŒ no Python class
IDropTargetPatternPropertyIds interface โŒ no Python class
IExpandCollapsePattern interface โŒ no Python class
IExpandCollapsePatternPropertyIds interface โŒ no Python class
IGridItemPattern interface โŒ no Python class
IGridItemPatternPropertyIds interface โŒ no Python class
IGridPattern interface โŒ no Python class
IGridPatternPropertyIds interface โŒ no Python class
IInvokePattern interface โŒ no Python class
IInvokePatternEventIds interface โŒ no Python class
IItemContainerPattern interface โŒ no Python class
ILegacyIAccessiblePattern interface โŒ no Python class
ILegacyIAccessiblePatternPropertyIds interface โŒ no Python class
IMultipleViewPattern interface โŒ no Python class
IMultipleViewPatternPropertyIds interface โŒ no Python class
IObjectModelPattern interface โŒ no Python class
IRangeValuePattern interface โŒ no Python class
IRangeValuePatternPropertyIds interface โŒ no Python class
IScrollItemPattern interface โŒ no Python class
IScrollPattern interface โŒ no Python class
IScrollPatternPropertyIds interface โŒ no Python class
ISelection2Pattern interface โŒ no Python class
ISelection2PatternPropertyIds interface โŒ no Python class
ISelectionItemPattern interface โŒ no Python class
ISelectionItemPatternEventIds interface โŒ no Python class
ISelectionItemPatternPropertyIds interface โŒ no Python class
ISelectionPattern interface โŒ no Python class
ISelectionPatternEventIds interface โŒ no Python class
ISelectionPatternPropertyIds interface โŒ no Python class
ISpreadsheetItemPattern interface โŒ no Python class
ISpreadsheetItemPatternPropertyIds interface โŒ no Python class
ISpreadsheetPattern interface โŒ no Python class
IStylesPattern interface โŒ no Python class
IStylesPatternPropertyIds interface โŒ no Python class
ISynchronizedInputPattern interface โŒ no Python class
ISynchronizedInputPatternEventIds interface โŒ no Python class
ITableItemPattern interface โŒ no Python class
ITableItemPatternPropertyIds interface โŒ no Python class
ITablePattern interface โŒ no Python class
ITablePatternPropertyIds interface โŒ no Python class
IText2Pattern interface โŒ no Python class
ITextChildPattern interface โŒ no Python class
ITextEditPattern interface โŒ no Python class
ITextEditPatternEventIds interface โŒ no Python class
ITextPattern interface โŒ no Python class
ITextPatternEventIds interface โŒ no Python class
ITogglePattern interface โŒ no Python class
ITogglePatternPropertyIds interface โŒ no Python class
ITransform2Pattern interface โŒ no Python class
ITransform2PatternPropertyIds interface โŒ no Python class
ITransformPattern interface โŒ no Python class
ITransformPatternPropertyIds interface โŒ no Python class
IValuePattern interface โŒ no Python class
IValuePatternPropertyIds interface โŒ no Python class
IVirtualizedItemPattern interface โŒ no Python class
IWindowPattern interface โŒ no Python class
IWindowPatternEventIds interface โŒ no Python class
IWindowPatternPropertyIds interface โŒ no Python class
InvokePatternBase`1 class โŒ no Python class
LegacyIAccessiblePatternBase`1 class โŒ no Python class
MultipleViewPatternBase`1 class โŒ no Python class
RangeValuePatternBase`1 class โŒ no Python class
ScrollPatternBase`1 class โŒ no Python class
ScrollPatternConstants class โŒ no Python class
Selection2PatternBase`1 class โŒ no Python class
SelectionItemPatternBase`1 class โŒ no Python class
SelectionPatternBase`1 class โŒ no Python class
SpreadsheetItemPatternBase`1 class โŒ no Python class
StylesPatternBase`1 class โŒ no Python class
SynchronizedInputPatternBase`1 class โŒ no Python class
TableItemPatternBase`1 class โŒ no Python class
TablePatternBase`1 class โŒ no Python class
TextPatternBase`1 class โŒ no Python class
TogglePatternBase`1 class โŒ no Python class
Transform2PatternBase`1 class โŒ no Python class
TransformPatternBase`1 class โŒ no Python class
ValuePatternBase`1 class โŒ no Python class
WindowPatternBase`1 class โŒ no Python class

Scrolling

Type Kind Status Notes
HorizontalScrollBar class โœ…
ScrollBarBase class โœ…
VerticalScrollBar class โœ…

Tools

Type Kind Status Notes
AccessibilityTextResolver class โœ…
Com class โŒ no Python class
ExtensionMethods class โŒ no Python class
ItemRealizer class โœ…
LocalizedStrings class โœ…
OperatingSystem class โŒ no Python class
Retry class โœ…
RetryResult`1 class โŒ no Python class
RetrySettings class โŒ no Python class
StringFormatter class โŒ no Python class
SystemInfo class โœ…
WindowsStoreAppLauncher class โœ…

WindowsAPI

Type Kind Status Notes
AccessibilityRole enum โœ…
AccessibilityState enum โœ…
AllocationType enum โœ…
COLORREF struct โŒ no Python class
CURSORINFO struct โŒ no Python class
CommonHresultValues class โœ…
CursorState enum โœ…
Delegates class โŒ no Python class
Gdi32 class โŒ no Python class
HARDWAREINPUT struct โŒ no Python class
ICONINFO struct โŒ no Python class
INPUT struct โŒ no Python class
INPUTUNION struct โŒ no Python class
InjectedInputVisualizationMode enum โœ…
InputType enum โœ…
KEYBDINPUT struct โŒ no Python class
Kernel32 class โŒ no Python class
KeyEventFlags enum โœ…
LayeredWindowAttributes class โœ…
MOUSEINPUT struct โŒ no Python class
MemoryProtection enum โœ…
MonitorInfo struct โŒ no Python class
MouseEventDataXButtons enum โœ…
MouseEventFlags enum โœ…
Oleacc class โŒ no Python class
POINT struct โŒ no Python class
POINTER_INFO struct โŒ no Python class
POINTER_TOUCH_INFO struct โŒ no Python class
PointerButtonChangeType enum โœ…
PointerFlags enum โœ…
PointerInputType enum โœ…
ProcessAccessFlags enum โœ…
RECT struct โŒ no Python class
SYSTEMTIME struct โŒ no Python class
ScanCodeShort enum โœ…
SendMessageTimeoutFlags enum โœ…
SetWindowPosFlags class โœ…
ShowWindowTypes class โœ…
StretchMode enum โœ…
SystemMetric enum โœ…
TernaryRasterOperations enum โœ…
TouchFlags enum โœ…
TouchMask enum โœ…
User32 class โŒ no Python class
VirtualKeyShort enum โœ…
VkKeyScanModifiers enum โœ…
WindowLongParam class โœ…
WindowStyles class โœ…
WindowsApiTools class โŒ no Python class
WindowsMessages class โœ…

FlaUI.UIA2

Converters

Type Kind Status Notes
AutomationElementConverter class โŒ no Python class
ConditionConverter class โŒ no Python class
ControlTypeConverter class โŒ no Python class
TextRangeConverter class โŒ no Python class
ValueConverter class โŒ no Python class

EventHandlers

Type Kind Status Notes
UIA2AutomationEventHandler class โŒ no Python class
UIA2FocusChangedEventHandler class โŒ no Python class
UIA2PropertyChangedEventHandler class โŒ no Python class
UIA2StructureChangedEventHandler class โŒ no Python class

Extensions

Type Kind Status Notes
CacheRequestExtensions class โŒ no Python class

Identifiers

Type Kind Status Notes
AutomationObjectIds class โŒ no Python class
TextAttributes class โŒ no Python class

Patterns

Type Kind Status Notes
AnnotationPatternPropertyIds class โŒ no Python class
DockPattern class โœ…
DockPatternPropertyIds class โŒ no Python class
DragPatternEventIds class โŒ no Python class
DragPatternPropertyIds class โŒ no Python class
DropTargetPatternEventIds class โŒ no Python class
DropTargetPatternPropertyIds class โŒ no Python class
ExpandCollapsePattern class โœ…
ExpandCollapsePatternPropertyIds class โŒ no Python class
GridItemPattern class โœ…
GridItemPatternPropertyIds class โŒ no Python class
GridPattern class โœ…
GridPatternPropertyIds class โŒ no Python class
InvokePattern class โœ…
InvokePatternEventIds class โŒ no Python class
ItemContainerPattern class โœ…
LegacyIAccessiblePatternPropertyIds class โŒ no Python class
MultipleViewPattern class โœ…
MultipleViewPatternPropertyIds class โŒ no Python class
RangeValuePattern class โœ…
RangeValuePatternPropertyIds class โŒ no Python class
ScrollItemPattern class โœ…
ScrollPattern class โœ…
ScrollPatternPropertyIds class โŒ no Python class
Selection2PatternPropertyIds class โŒ no Python class
SelectionItemPattern class โœ…
SelectionItemPatternEventIds class โŒ no Python class
SelectionItemPatternPropertyIds class โŒ no Python class
SelectionPattern class โœ…
SelectionPatternEventIds class โŒ no Python class
SelectionPatternPropertyIds class โŒ no Python class
SpreadsheetItemPatternPropertyIds class โŒ no Python class
StylesPatternPropertyIds class โŒ no Python class
SynchronizedInputPattern class โœ…
SynchronizedInputPatternEventIds class โŒ no Python class
TableItemPattern class โœ…
TableItemPatternPropertyIds class โŒ no Python class
TablePattern class โœ…
TablePatternPropertyIds class โŒ no Python class
TextEditPatternEventIdIds class โŒ no Python class
TextPattern class โœ…
TextPatternEventIds class โŒ no Python class
TogglePattern class โœ…
TogglePatternPropertyIds class โŒ no Python class
Transform2PatternPropertyIds class โŒ no Python class
TransformPattern class โœ…
TransformPatternPropertyIds class โŒ no Python class
ValuePattern class โœ…
ValuePatternPropertyIds class โŒ no Python class
VirtualizedItemPattern class โœ…
WindowPattern class โœ…
WindowPatternEventIds class โŒ no Python class
WindowPatternPropertyIds class โŒ no Python class

UIA2

Type Kind Status Notes
UIA2Automation class ๐ŸŸก unwrapped: WrapNativeElement
UIA2AutomationElementEventIds class โŒ no Python class
UIA2AutomationElementPatternAvailabilityPropertyIds class โŒ no Python class
UIA2AutomationElementPropertyIds class โŒ no Python class
UIA2EventLibrary class โŒ no Python class
UIA2FrameworkAutomationElement class โŒ no Python class
UIA2PatternLibrary class โŒ no Python class
UIA2PropertyLibrary class โŒ no Python class
UIA2TextAttributeLibrary class โŒ no Python class
UIA2TextRange class โŒ no Python class
UIA2TreeWalker class โŒ no Python class
UIA2TreeWalkerFactory class โŒ no Python class

FlaUI.UIA3

Converters

Type Kind Status Notes
AnnotationTypeConverter class โŒ no Python class
AutomationElementConverter class โŒ no Python class
ConditionConverter class โŒ no Python class
ControlTypeConverter class โŒ no Python class
LandmarkTypeConverter class โŒ no Python class
StyleTypeConverter class โŒ no Python class
TextRangeConverter class โŒ no Python class
ValueConverter class โŒ no Python class

EventHandlers

Type Kind Status Notes
UIA3ActiveTextPositionChangedEventHandler class โŒ no Python class
UIA3AutomationEventHandler class โŒ no Python class
UIA3FocusChangedEventHandler class โŒ no Python class
UIA3NotificationEventHandler class โŒ no Python class
UIA3PropertyChangedEventHandler class โŒ no Python class
UIA3StructureChangedEventHandler class โŒ no Python class
UIA3TextEditTextChangedEventHandler class โŒ no Python class

Extensions

Type Kind Status Notes
CacheRequestExtensions class โŒ no Python class
PointExtensions class โŒ no Python class
RectangleExtensions class โŒ no Python class

Identifiers

Type Kind Status Notes
AutomationObjectIds class โŒ no Python class
TextAttributes class โŒ no Python class

Patterns

Type Kind Status Notes
AnnotationPattern class โœ…
AnnotationPatternPropertyIds class โŒ no Python class
DockPattern class โœ…
DockPatternPropertyIds class โŒ no Python class
DragPattern class โœ…
DragPatternEventIds class โŒ no Python class
DragPatternPropertyIds class โŒ no Python class
DropTargetPattern class โœ…
DropTargetPatternEventIds class โŒ no Python class
DropTargetPatternPropertyIds class โŒ no Python class
ExpandCollapsePattern class โœ…
ExpandCollapsePatternPropertyIds class โŒ no Python class
GridItemPattern class โœ…
GridItemPatternPropertyIds class โŒ no Python class
GridPattern class โœ…
GridPatternPropertyIds class โŒ no Python class
InvokePattern class โœ…
InvokePatternEventIds class โŒ no Python class
ItemContainerPattern class โœ…
LegacyIAccessiblePattern class ๐ŸŸก unwrapped: GetIAccessible
LegacyIAccessiblePatternPropertyIds class โŒ no Python class
MultipleViewPattern class โœ…
MultipleViewPatternPropertyIds class โŒ no Python class
ObjectModelPattern class โœ…
RangeValuePattern class โœ…
RangeValuePatternPropertyIds class โŒ no Python class
ScrollItemPattern class โœ…
ScrollPattern class โœ…
ScrollPatternPropertyIds class โŒ no Python class
Selection2Pattern class โœ…
Selection2PatternPropertyIds class โŒ no Python class
SelectionItemPattern class โœ…
SelectionItemPatternEventIds class โŒ no Python class
SelectionItemPatternPropertyIds class โŒ no Python class
SelectionPattern class โœ…
SelectionPatternEventIds class โŒ no Python class
SelectionPatternPropertyIds class โŒ no Python class
SpreadsheetItemPattern class โœ…
SpreadsheetItemPatternPropertyIds class โŒ no Python class
SpreadsheetPattern class โœ…
StylesPattern class โœ…
StylesPatternPropertyIds class โŒ no Python class
SynchronizedInputPattern class โœ…
SynchronizedInputPatternEventIds class โŒ no Python class
TableItemPattern class โœ…
TableItemPatternPropertyIds class โŒ no Python class
TablePattern class โœ…
TablePatternPropertyIds class โŒ no Python class
Text2Pattern class ๐ŸŸก unwrapped: ExtendedNativePattern
TextChildPattern class โœ…
TextEditPattern class ๐ŸŸก unwrapped: ExtendedNativePattern
TextEditPatternEventIdIds class โŒ no Python class
TextPattern class โœ…
TextPatternEventIds class โŒ no Python class
TogglePattern class โœ…
TogglePatternPropertyIds class โŒ no Python class
Transform2Pattern class โœ…
Transform2PatternPropertyIds class โŒ no Python class
TransformPattern class โœ…
TransformPatternPropertyIds class โŒ no Python class
ValuePattern class โœ…
ValuePatternPropertyIds class โŒ no Python class
VirtualizedItemPattern class โœ…
WindowPattern class โœ…
WindowPatternEventIds class โŒ no Python class
WindowPatternPropertyIds class โŒ no Python class

UIA3

Type Kind Status Notes
UIA3Automation class ๐ŸŸก unwrapped: NativeAutomation, NativeAutomation2, NativeAutomation3, NativeAutomation4, NativeAutomation5, NativeAutomation6 (+1 more)
UIA3AutomationElementEventIds class โŒ no Python class
UIA3AutomationElementPatternAvailabilityPropertyIds class โŒ no Python class
UIA3AutomationElementPropertyIds class โŒ no Python class
UIA3EventLibrary class โŒ no Python class
UIA3FrameworkAutomationElement class โŒ no Python class
UIA3PatternLibrary class โŒ no Python class
UIA3PropertyLibrary class โŒ no Python class
UIA3TextAttributeLibrary class โŒ no Python class
UIA3TextRange class โŒ no Python class
UIA3TextRange2 class โŒ no Python class
UIA3TextRange3 class โŒ no Python class
UIA3TreeWalker class โŒ no Python class
UIA3TreeWalkerFactory class โŒ no Python class