543 references to UIA_PROPERTY_ID
System.Windows.Forms (451)
System\Windows\Forms\Accessibility\AccessibleObject.cs (37)
606/// which outlines how the <see cref="VARIANT"/> should be defined for each <see cref="UIA_PROPERTY_ID"/> 611internal virtual VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) => 614UIA_PROPERTY_ID.UIA_AccessKeyPropertyId => (VARIANT)(KeyboardShortcut ?? string.Empty), 615UIA_PROPERTY_ID.UIA_AutomationIdPropertyId => AutomationId is null ? VARIANT.Empty : (VARIANT)AutomationId, 616UIA_PROPERTY_ID.UIA_BoundingRectanglePropertyId => UiaTextProvider.BoundingRectangleAsVariant(Bounds), 617UIA_PROPERTY_ID.UIA_FrameworkIdPropertyId => (VARIANT)"WinForm", 618UIA_PROPERTY_ID.UIA_IsExpandCollapsePatternAvailablePropertyId => (VARIANT)IsPatternSupported(UIA_PATTERN_ID.UIA_ExpandCollapsePatternId), 619UIA_PROPERTY_ID.UIA_IsGridItemPatternAvailablePropertyId => (VARIANT)IsPatternSupported(UIA_PATTERN_ID.UIA_GridItemPatternId), 620UIA_PROPERTY_ID.UIA_IsGridPatternAvailablePropertyId => (VARIANT)IsPatternSupported(UIA_PATTERN_ID.UIA_GridPatternId), 621UIA_PROPERTY_ID.UIA_IsInvokePatternAvailablePropertyId => (VARIANT)IsInvokePatternAvailable, 622UIA_PROPERTY_ID.UIA_IsLegacyIAccessiblePatternAvailablePropertyId => (VARIANT)IsPatternSupported(UIA_PATTERN_ID.UIA_LegacyIAccessiblePatternId), 623UIA_PROPERTY_ID.UIA_IsMultipleViewPatternAvailablePropertyId => (VARIANT)IsPatternSupported(UIA_PATTERN_ID.UIA_MultipleViewPatternId), 624UIA_PROPERTY_ID.UIA_IsOffscreenPropertyId => (VARIANT)((State & AccessibleStates.Offscreen) == AccessibleStates.Offscreen), 625UIA_PROPERTY_ID.UIA_IsPasswordPropertyId => VARIANT.False, 626UIA_PROPERTY_ID.UIA_IsScrollItemPatternAvailablePropertyId => (VARIANT)IsPatternSupported(UIA_PATTERN_ID.UIA_ScrollItemPatternId), 627UIA_PROPERTY_ID.UIA_IsScrollPatternAvailablePropertyId => (VARIANT)IsPatternSupported(UIA_PATTERN_ID.UIA_ScrollPatternId), 628UIA_PROPERTY_ID.UIA_IsSelectionItemPatternAvailablePropertyId => (VARIANT)IsPatternSupported(UIA_PATTERN_ID.UIA_SelectionItemPatternId), 629UIA_PROPERTY_ID.UIA_IsSelectionPatternAvailablePropertyId => (VARIANT)IsPatternSupported(UIA_PATTERN_ID.UIA_SelectionPatternId), 630UIA_PROPERTY_ID.UIA_IsTableItemPatternAvailablePropertyId => (VARIANT)IsPatternSupported(UIA_PATTERN_ID.UIA_TableItemPatternId), 631UIA_PROPERTY_ID.UIA_IsTablePatternAvailablePropertyId => (VARIANT)IsPatternSupported(UIA_PATTERN_ID.UIA_TablePatternId), 632UIA_PROPERTY_ID.UIA_IsTextPattern2AvailablePropertyId => (VARIANT)IsPatternSupported(UIA_PATTERN_ID.UIA_TextPattern2Id), 633UIA_PROPERTY_ID.UIA_IsTextPatternAvailablePropertyId => (VARIANT)IsPatternSupported(UIA_PATTERN_ID.UIA_TextPatternId), 634UIA_PROPERTY_ID.UIA_IsTogglePatternAvailablePropertyId => (VARIANT)IsPatternSupported(UIA_PATTERN_ID.UIA_TogglePatternId), 635UIA_PROPERTY_ID.UIA_IsValuePatternAvailablePropertyId => (VARIANT)IsPatternSupported(UIA_PATTERN_ID.UIA_ValuePatternId), 636UIA_PROPERTY_ID.UIA_HelpTextPropertyId => (VARIANT)(Help ?? string.Empty), 637UIA_PROPERTY_ID.UIA_LegacyIAccessibleDefaultActionPropertyId => !string.IsNullOrEmpty(DefaultAction) ? (VARIANT)DefaultAction : VARIANT.Empty, 638UIA_PROPERTY_ID.UIA_LegacyIAccessibleNamePropertyId => !string.IsNullOrEmpty(Name) ? (VARIANT)Name : VARIANT.Empty, 639UIA_PROPERTY_ID.UIA_LegacyIAccessibleRolePropertyId => (VARIANT)(int)Role, 640UIA_PROPERTY_ID.UIA_LegacyIAccessibleStatePropertyId => (VARIANT)(int)State, 641UIA_PROPERTY_ID.UIA_NamePropertyId => Name is null ? VARIANT.Empty : (VARIANT)Name, 642UIA_PROPERTY_ID.UIA_RuntimeIdPropertyId => (VARIANT)new SafeArrayScope<int>(RuntimeId), 643UIA_PROPERTY_ID.UIA_SelectionCanSelectMultiplePropertyId => (VARIANT)CanSelectMultiple, 644UIA_PROPERTY_ID.UIA_SelectionIsSelectionRequiredPropertyId => (VARIANT)IsSelectionRequired, 645UIA_PROPERTY_ID.UIA_ValueValuePropertyId => !string.IsNullOrEmpty(Value) ? (VARIANT)Value : VARIANT.Empty, 1007HRESULT IRawElementProviderSimple.Interface.GetPropertyValue(UIA_PROPERTY_ID propertyId, VARIANT* pRetVal) 1017if (propertyId == UIA_PROPERTY_ID.UIA_NativeWindowHandlePropertyId) 3245internal virtual bool RaiseAutomationPropertyChangedEvent(UIA_PROPERTY_ID propertyId, VARIANT oldValue, VARIANT newValue)
System\Windows\Forms\Accessibility\Control.ControlAccessibleObject.cs (7)
507internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) => 510UIA_PROPERTY_ID.UIA_ControlTypePropertyId 514UIA_PROPERTY_ID.UIA_IsEnabledPropertyId 516UIA_PROPERTY_ID.UIA_IsKeyboardFocusablePropertyId when 519UIA_PROPERTY_ID.UIA_LiveSettingPropertyId 523UIA_PROPERTY_ID.UIA_NativeWindowHandlePropertyId 531internal override bool RaiseAutomationPropertyChangedEvent(UIA_PROPERTY_ID propertyId, VARIANT oldValue, VARIANT newValue)
System\Windows\Forms\Accessibility\LabelEditAccessibleObject.cs (8)
32internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) 35UIA_PROPERTY_ID.UIA_ProcessIdPropertyId => (VARIANT)Environment.ProcessId, 36UIA_PROPERTY_ID.UIA_ControlTypePropertyId => (VARIANT)(int)UIA_CONTROLTYPE_ID.UIA_EditControlTypeId, 37UIA_PROPERTY_ID.UIA_AccessKeyPropertyId => (VARIANT)string.Empty, 38UIA_PROPERTY_ID.UIA_HasKeyboardFocusPropertyId => VARIANT.True, 39UIA_PROPERTY_ID.UIA_IsKeyboardFocusablePropertyId => (VARIANT)State.HasFlag(AccessibleStates.Focusable), 40UIA_PROPERTY_ID.UIA_IsContentElementPropertyId => VARIANT.True, 41UIA_PROPERTY_ID.UIA_NativeWindowHandlePropertyId => UIAHelper.WindowHandleToVariant(_labelEdit.TryGetTarget(out var target) ? target.HWND : HWND.Null),
System\Windows\Forms\Accessibility\LabelEditUiaTextProvider.cs (1)
79object? hasKeyboardFocus = _owningChildEditAccessibilityObject.GetPropertyValue(propertyID: UIA_PROPERTY_ID.UIA_HasKeyboardFocusPropertyId);
System\Windows\Forms\Controls\Buttons\Button.ButtonAccessibleObject.cs (4)
13internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) => propertyID switch 15UIA_PROPERTY_ID.UIA_ControlTypePropertyId 22UIA_PROPERTY_ID.UIA_HasKeyboardFocusPropertyId => (VARIANT)(this.TryGetOwnerAs(out Control? owner) && owner.Focused), 23UIA_PROPERTY_ID.UIA_IsKeyboardFocusablePropertyId
System\Windows\Forms\Controls\Buttons\Button.cs (1)
241AccessibilityObject.RaiseAutomationPropertyChangedEvent(UIA_PROPERTY_ID.UIA_NamePropertyId, nameVariant, nameVariant);
System\Windows\Forms\Controls\Buttons\ButtonBase.cs (1)
1169AccessibilityObject.RaiseAutomationPropertyChangedEvent(UIA_PROPERTY_ID.UIA_NamePropertyId, textVariant, textVariant);
System\Windows\Forms\Controls\Buttons\CheckBox.CheckBoxAccessibleObject.cs (3)
47internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) => propertyID switch 49UIA_PROPERTY_ID.UIA_HasKeyboardFocusPropertyId => (VARIANT)(this.TryGetOwnerAs(out Control? owner) && owner.Focused), 50UIA_PROPERTY_ID.UIA_IsKeyboardFocusablePropertyId =>
System\Windows\Forms\Controls\Buttons\CheckBox.cs (1)
443AccessibilityObject.RaiseAutomationPropertyChangedEvent(UIA_PROPERTY_ID.UIA_NamePropertyId, nameVariant, nameVariant);
System\Windows\Forms\Controls\Buttons\RadioButton.cs (1)
366AccessibilityObject.RaiseAutomationPropertyChangedEvent(UIA_PROPERTY_ID.UIA_NamePropertyId, nameVariant, nameVariant);
System\Windows\Forms\Controls\Buttons\RadioButton.RadioButtonAccessibleObject.cs (3)
37internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) => propertyID switch 39UIA_PROPERTY_ID.UIA_HasKeyboardFocusPropertyId => (VARIANT)(this.TryGetOwnerAs(out RadioButton? owner) && owner.Focused), 40UIA_PROPERTY_ID.UIA_IsKeyboardFocusablePropertyId
System\Windows\Forms\Controls\ComboBox\ComboBox.ComboBoxAccessibleObject.cs (3)
112internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) => 115UIA_PROPERTY_ID.UIA_ControlTypePropertyId => 122UIA_PROPERTY_ID.UIA_HasKeyboardFocusPropertyId => (VARIANT)(this.TryGetOwnerAs(out ComboBox? owner) && owner.Focused),
System\Windows\Forms\Controls\ComboBox\ComboBox.ComboBoxChildDropDownButtonUiaProvider.cs (5)
76internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) => 79UIA_PROPERTY_ID.UIA_ControlTypePropertyId => (VARIANT)(int)UIA_CONTROLTYPE_ID.UIA_ButtonControlTypeId, 80UIA_PROPERTY_ID.UIA_HasKeyboardFocusPropertyId => (VARIANT)_owner.Focused, 81UIA_PROPERTY_ID.UIA_IsEnabledPropertyId => (VARIANT)_owner.Enabled, 82UIA_PROPERTY_ID.UIA_IsKeyboardFocusablePropertyId => (VARIANT)State.HasFlag(AccessibleStates.Focusable),
System\Windows\Forms\Controls\ComboBox\ComboBox.ComboBoxChildEditUiaProvider.cs (7)
72internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) => 75UIA_PROPERTY_ID.UIA_ControlTypePropertyId => (VARIANT)(int)UIA_CONTROLTYPE_ID.UIA_EditControlTypeId, 76UIA_PROPERTY_ID.UIA_HasKeyboardFocusPropertyId => (VARIANT)_owningComboBox.Focused, 77UIA_PROPERTY_ID.UIA_IsEnabledPropertyId => (VARIANT)_owningComboBox.Enabled, 78UIA_PROPERTY_ID.UIA_IsKeyboardFocusablePropertyId => (VARIANT)State.HasFlag(AccessibleStates.Focusable), 79UIA_PROPERTY_ID.UIA_IsOffscreenPropertyId => VARIANT.False, 80UIA_PROPERTY_ID.UIA_NativeWindowHandlePropertyId => UIAHelper.WindowHandleToVariant(_handle),
System\Windows\Forms\Controls\ComboBox\ComboBox.ComboBoxChildListUiaProvider.cs (8)
123internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) => 126UIA_PROPERTY_ID.UIA_ControlTypePropertyId => (VARIANT)(int)UIA_CONTROLTYPE_ID.UIA_ListControlTypeId, 127UIA_PROPERTY_ID.UIA_HasKeyboardFocusPropertyId => 130UIA_PROPERTY_ID.UIA_IsEnabledPropertyId => (VARIANT)_owningComboBox.Enabled, 131UIA_PROPERTY_ID.UIA_IsKeyboardFocusablePropertyId => (VARIANT)State.HasFlag(AccessibleStates.Focusable), 132UIA_PROPERTY_ID.UIA_IsOffscreenPropertyId => VARIANT.False, 133UIA_PROPERTY_ID.UIA_IsSelectionPatternAvailablePropertyId => VARIANT.True, 134UIA_PROPERTY_ID.UIA_NativeWindowHandlePropertyId => UIAHelper.WindowHandleToVariant(_childListControlhandle),
System\Windows\Forms\Controls\ComboBox\ComboBox.ComboBoxChildTextUiaProvider.cs (6)
100internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) => 103UIA_PROPERTY_ID.UIA_ControlTypePropertyId => (VARIANT)(int)UIA_CONTROLTYPE_ID.UIA_TextControlTypeId, 104UIA_PROPERTY_ID.UIA_HasKeyboardFocusPropertyId => (VARIANT)_owner.Focused, 105UIA_PROPERTY_ID.UIA_IsEnabledPropertyId => (VARIANT)_owner.Enabled, 106UIA_PROPERTY_ID.UIA_IsKeyboardFocusablePropertyId => (VARIANT)State.HasFlag(AccessibleStates.Focusable), 107UIA_PROPERTY_ID.UIA_IsOffscreenPropertyId => VARIANT.False,
System\Windows\Forms\Controls\ComboBox\ComboBox.ComboBoxItemAccessibleObject.cs (9)
111internal override unsafe VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) => 114UIA_PROPERTY_ID.UIA_ControlTypePropertyId => (VARIANT)(int)UIA_CONTROLTYPE_ID.UIA_ListItemControlTypeId, 115UIA_PROPERTY_ID.UIA_HasKeyboardFocusPropertyId => (VARIANT)(_owningComboBox.Focused && _owningComboBox.SelectedIndex == GetCurrentIndex()), 116UIA_PROPERTY_ID.UIA_IsContentElementPropertyId => VARIANT.True, 117UIA_PROPERTY_ID.UIA_IsControlElementPropertyId => VARIANT.True, 118UIA_PROPERTY_ID.UIA_IsEnabledPropertyId => (VARIANT)_owningComboBox.Enabled, 119UIA_PROPERTY_ID.UIA_IsKeyboardFocusablePropertyId => (VARIANT)State.HasFlag(AccessibleStates.Focusable), 120UIA_PROPERTY_ID.UIA_SelectionItemIsSelectedPropertyId => (VARIANT)State.HasFlag(AccessibleStates.Selected), 121UIA_PROPERTY_ID.UIA_SelectionItemSelectionContainerPropertyId => (VARIANT)ComHelpers.GetComPointer<IUnknown>(_owningComboBox.ChildListAccessibleObject),
System\Windows\Forms\Controls\ComboBox\ComboBox.ComboBoxUiaTextProvider.cs (1)
133object? hasKeyboardFocus = _owningComboBox.ChildEditAccessibleObject.GetPropertyValue(UIA_PROPERTY_ID.UIA_HasKeyboardFocusPropertyId);
System\Windows\Forms\Controls\ComboBox\ComboBox.cs (2)
2417UIA_PROPERTY_ID.UIA_ExpandCollapseExpandCollapseStatePropertyId, 2900UIA_PROPERTY_ID.UIA_ExpandCollapseExpandCollapseStatePropertyId,
System\Windows\Forms\Controls\DataGridView\DataGridView.AccessibleObject.cs (6)
206internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) 212case UIA_PROPERTY_ID.UIA_ControlTypePropertyId: 216case UIA_PROPERTY_ID.UIA_HasKeyboardFocusPropertyId: 220case UIA_PROPERTY_ID.UIA_IsControlElementPropertyId: 222case UIA_PROPERTY_ID.UIA_IsKeyboardFocusablePropertyId: 224case UIA_PROPERTY_ID.UIA_ItemStatusPropertyId:
System\Windows\Forms\Controls\DataGridView\DataGridView.DataGridViewEditingPanelAccessibleObject.cs (9)
74internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyId) => 77UIA_PROPERTY_ID.UIA_AccessKeyPropertyId => this.TryGetOwnerAs(out Panel? owner) && owner.AccessibilityObject.KeyboardShortcut is { } shortcut 80UIA_PROPERTY_ID.UIA_ControlTypePropertyId => this.GetOwnerAccessibleRole() == AccessibleRole.Default 85UIA_PROPERTY_ID.UIA_HasKeyboardFocusPropertyId 87UIA_PROPERTY_ID.UIA_IsContentElementPropertyId => VARIANT.True, 88UIA_PROPERTY_ID.UIA_IsControlElementPropertyId => VARIANT.True, 89UIA_PROPERTY_ID.UIA_IsEnabledPropertyId => (VARIANT)(_ownerDataGridView.TryGetTarget(out var owner) && owner.Enabled), 90UIA_PROPERTY_ID.UIA_IsKeyboardFocusablePropertyId => VARIANT.True, 91UIA_PROPERTY_ID.UIA_ProviderDescriptionPropertyId => (VARIANT)SR.DataGridViewEditingPanelUiaProviderDescription,
System\Windows\Forms\Controls\DataGridView\DataGridView.TopRowAccessibleObject.cs (6)
245internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyId) => 248UIA_PROPERTY_ID.UIA_HasKeyboardFocusPropertyId => VARIANT.False, 249UIA_PROPERTY_ID.UIA_IsContentElementPropertyId => VARIANT.True, 250UIA_PROPERTY_ID.UIA_IsEnabledPropertyId => _ownerDataGridView is null 253UIA_PROPERTY_ID.UIA_IsKeyboardFocusablePropertyId => VARIANT.False, 254UIA_PROPERTY_ID.UIA_IsOffscreenPropertyId => VARIANT.False,
System\Windows\Forms\Controls\DataGridView\DataGridViewButtonCell.DataGridViewButtonCellAccessibleObject.cs (2)
55internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) 56=> propertyID == UIA_PROPERTY_ID.UIA_ControlTypePropertyId
System\Windows\Forms\Controls\DataGridView\DataGridViewCell.DataGridViewCellAccessibleObject.cs (6)
683internal override unsafe VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) 686UIA_PROPERTY_ID.UIA_ControlTypePropertyId => (VARIANT)(int)UIA_CONTROLTYPE_ID.UIA_DataItemControlTypeId, 687UIA_PROPERTY_ID.UIA_GridItemContainingGridPropertyId 689UIA_PROPERTY_ID.UIA_HasKeyboardFocusPropertyId => (VARIANT)State.HasFlag(AccessibleStates.Focused), // Announce the cell when focusing. 690UIA_PROPERTY_ID.UIA_IsEnabledPropertyId => (VARIANT)(_owner?.DataGridView?.Enabled ?? false), 691UIA_PROPERTY_ID.UIA_IsKeyboardFocusablePropertyId => (VARIANT)State.HasFlag(AccessibleStates.Focusable),
System\Windows\Forms\Controls\DataGridView\DataGridViewCheckBoxCell.DataGridViewCheckBoxCellAccessibleObject.cs (2)
138internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) 141UIA_PROPERTY_ID.UIA_ControlTypePropertyId => (VARIANT)(int)UIA_CONTROLTYPE_ID.UIA_CheckBoxControlTypeId,
System\Windows\Forms\Controls\DataGridView\DataGridViewColumnHeaderCell.DataGridViewColumnHeaderCellAccessibleObject.cs (6)
264internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyId) 267UIA_PROPERTY_ID.UIA_ControlTypePropertyId => (VARIANT)(int)UIA_CONTROLTYPE_ID.UIA_HeaderControlTypeId, 268UIA_PROPERTY_ID.UIA_HasKeyboardFocusPropertyId => VARIANT.False, 269UIA_PROPERTY_ID.UIA_IsEnabledPropertyId => (VARIANT)(Owner?.DataGridView?.Enabled ?? false), 270UIA_PROPERTY_ID.UIA_IsKeyboardFocusablePropertyId => (VARIANT)State.HasFlag(AccessibleStates.Focusable), 271UIA_PROPERTY_ID.UIA_IsPasswordPropertyId => VARIANT.False,
System\Windows\Forms\Controls\DataGridView\DataGridViewComboBoxCell.DataGridViewComboBoxCellAccessibleObject.cs (2)
22internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) => propertyID switch 24UIA_PROPERTY_ID.UIA_ControlTypePropertyId => IsInComboBoxMode
System\Windows\Forms\Controls\DataGridView\DataGridViewImageCell.DataGridViewImageCellAccessibleObject.cs (2)
59internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) 62UIA_PROPERTY_ID.UIA_ControlTypePropertyId => (VARIANT)(int)UIA_CONTROLTYPE_ID.UIA_ImageControlTypeId,
System\Windows\Forms\Controls\DataGridView\DataGridViewLinkCell.DataGridViewLinkCellAccessibleObject.cs (2)
52internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) 55UIA_PROPERTY_ID.UIA_ControlTypePropertyId => (VARIANT)(int)UIA_CONTROLTYPE_ID.UIA_HyperlinkControlTypeId,
System\Windows\Forms\Controls\DataGridView\DataGridViewRow.DataGridViewRowAccessibleObject.cs (4)
476internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyId) => 479UIA_PROPERTY_ID.UIA_HasKeyboardFocusPropertyId => (VARIANT)string.Empty, 480UIA_PROPERTY_ID.UIA_IsEnabledPropertyId => (VARIANT)(Owner?.DataGridView?.Enabled ?? false), 481UIA_PROPERTY_ID.UIA_IsKeyboardFocusablePropertyId => (VARIANT)string.Empty,
System\Windows\Forms\Controls\DataGridView\DataGridViewRowHeaderCell.DataGridViewRowHeaderCellAccessibleObject.cs (5)
272internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyId) 275UIA_PROPERTY_ID.UIA_ControlTypePropertyId => (VARIANT)(int)UIA_CONTROLTYPE_ID.UIA_HeaderControlTypeId, 276UIA_PROPERTY_ID.UIA_HasKeyboardFocusPropertyId => VARIANT.False, 277UIA_PROPERTY_ID.UIA_IsEnabledPropertyId => (VARIANT)(Owner?.DataGridView?.Enabled ?? false), 278UIA_PROPERTY_ID.UIA_IsKeyboardFocusablePropertyId => (VARIANT)State.HasFlag(AccessibleStates.Focusable),
System\Windows\Forms\Controls\DataGridView\DataGridViewTextBoxCell.DataGridViewTextBoxCellAccessibleObject.cs (2)
19internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) 22UIA_PROPERTY_ID.UIA_ControlTypePropertyId => (VARIANT)(int)UIA_CONTROLTYPE_ID.UIA_DataItemControlTypeId,
System\Windows\Forms\Controls\DataGridView\DataGridViewTextBoxEditingControl.DataGridViewTextBoxEditingControlAccessibleObject.cs (2)
60internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) 65UIA_PROPERTY_ID.UIA_ControlTypePropertyId when this.GetOwnerAccessibleRole() == AccessibleRole.Default
System\Windows\Forms\Controls\DataGridView\DataGridViewTopLeftHeaderCell.DataGridViewTopLeftHeaderCellAccessibleObject.cs (5)
298internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyId) => 301UIA_PROPERTY_ID.UIA_ControlTypePropertyId => (VARIANT)(int)UIA_CONTROLTYPE_ID.UIA_HeaderControlTypeId, 302UIA_PROPERTY_ID.UIA_IsEnabledPropertyId => (VARIANT)(Owner?.DataGridView?.Enabled ?? false), 303UIA_PROPERTY_ID.UIA_IsKeyboardFocusablePropertyId => VARIANT.False, 304UIA_PROPERTY_ID.UIA_IsOffscreenPropertyId => VARIANT.False,
System\Windows\Forms\Controls\DateTimePicker\DateTimePicker.cs (3)
1054UIA_PROPERTY_ID.UIA_ExpandCollapseExpandCollapseStatePropertyId, 1072UIA_PROPERTY_ID.UIA_ExpandCollapseExpandCollapseStatePropertyId, 1150UIA_PROPERTY_ID.UIA_ValueValuePropertyId,
System\Windows\Forms\Controls\DateTimePicker\DateTimePicker.DateTimePickerAccessibleObject.cs (2)
76internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) 79UIA_PROPERTY_ID.UIA_LocalizedControlTypePropertyId when this.GetOwnerAccessibleRole() == AccessibleRole.Default
System\Windows\Forms\Controls\GroupBox\GroupBox.GroupBoxAccessibleObject.cs (2)
19internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) 22UIA_PROPERTY_ID.UIA_IsKeyboardFocusablePropertyId => VARIANT.True,
System\Windows\Forms\Controls\Labels\Label.cs (1)
1230AccessibilityObject.RaiseAutomationPropertyChangedEvent(UIA_PROPERTY_ID.UIA_NamePropertyId, textVariant, textVariant);
System\Windows\Forms\Controls\Labels\LinkLabel.Link.LinkAccessibleObject.cs (5)
89internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) 92UIA_PROPERTY_ID.UIA_ControlTypePropertyId => (VARIANT)(int)UIA_CONTROLTYPE_ID.UIA_HyperlinkControlTypeId, 93UIA_PROPERTY_ID.UIA_HasKeyboardFocusPropertyId => (VARIANT)(_owningLinkLabel.FocusLink == _owningLink), 94UIA_PROPERTY_ID.UIA_IsEnabledPropertyId => (VARIANT)_owningLinkLabel.Enabled, 95UIA_PROPERTY_ID.UIA_IsKeyboardFocusablePropertyId => (VARIANT)State.HasFlag(AccessibleStates.Focusable),
System\Windows\Forms\Controls\Labels\LinkLabel.LinkLabelAccessibleObject.cs (3)
49internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) 52UIA_PROPERTY_ID.UIA_HasKeyboardFocusPropertyId => VARIANT.False, 53UIA_PROPERTY_ID.UIA_IsKeyboardFocusablePropertyId => VARIANT.False,
System\Windows\Forms\Controls\ListBoxes\CheckedListBox.CheckedListBoxItemAccessibleObject.cs (2)
45internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) 48UIA_PROPERTY_ID.UIA_ControlTypePropertyId => (VARIANT)(int)UIA_CONTROLTYPE_ID.UIA_CheckBoxControlTypeId,
System\Windows\Forms\Controls\ListBoxes\CheckedListBox.cs (1)
803checkedItem?.RaiseAutomationPropertyChangedEvent(UIA_PROPERTY_ID.UIA_ToggleToggleStatePropertyId, (VARIANT)(int)ice.CurrentValue, (VARIANT)(int)ice.NewValue);
System\Windows\Forms\Controls\ListBoxes\ListBox.AccessibleObject.cs (4)
97internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) => propertyID switch 99UIA_PROPERTY_ID.UIA_BoundingRectanglePropertyId => UiaTextProvider.BoundingRectangleAsVariant(BoundingRectangle), 103UIA_PROPERTY_ID.UIA_ControlTypePropertyId => this.GetOwnerAccessibleRole() == AccessibleRole.Default 106UIA_PROPERTY_ID.UIA_HasKeyboardFocusPropertyId => this.TryGetOwnerAs(out ListBox? owner)
System\Windows\Forms\Controls\ListBoxes\ListBox.ItemAccessibleObject.cs (6)
164internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) 167UIA_PROPERTY_ID.UIA_ControlTypePropertyId => (VARIANT)(int)UIA_CONTROLTYPE_ID.UIA_ListItemControlTypeId, 168UIA_PROPERTY_ID.UIA_HasKeyboardFocusPropertyId => (VARIANT)(_owningListBox.Focused && _owningListBox.FocusedIndex == CurrentIndex), 169UIA_PROPERTY_ID.UIA_IsEnabledPropertyId => (VARIANT)_owningListBox.Enabled, 170UIA_PROPERTY_ID.UIA_IsKeyboardFocusablePropertyId => (VARIANT)State.HasFlag(AccessibleStates.Focusable), 171UIA_PROPERTY_ID.UIA_NativeWindowHandlePropertyId => UIAHelper.WindowHandleToVariant(HWND.Null),
System\Windows\Forms\Controls\ListView\ColumnHeader.ListViewColumnHeaderAccessibleObject.cs (2)
28internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) 31UIA_PROPERTY_ID.UIA_ControlTypePropertyId => (VARIANT)(int)UIA_CONTROLTYPE_ID.UIA_HeaderItemControlTypeId,
System\Windows\Forms\Controls\ListView\ListView.cs (1)
4808item.AccessibilityObject.RaiseAutomationPropertyChangedEvent(UIA_PROPERTY_ID.UIA_ToggleToggleStatePropertyId, (VARIANT)(int)oldValue, (VARIANT)(int)newValue);
System\Windows\Forms\Controls\ListView\ListView.ListViewAccessibleObject.cs (5)
222internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) 228UIA_PROPERTY_ID.UIA_ControlTypePropertyId when 233UIA_PROPERTY_ID.UIA_HasKeyboardFocusPropertyId => VARIANT.False, 234UIA_PROPERTY_ID.UIA_IsKeyboardFocusablePropertyId => (VARIANT)State.HasFlag(AccessibleStates.Focusable), 235UIA_PROPERTY_ID.UIA_ItemStatusPropertyId => (VARIANT)GetItemStatus(),
System\Windows\Forms\Controls\ListView\ListViewGroup.ListViewGroupAccessibleObject.cs (6)
182internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) 185UIA_PROPERTY_ID.UIA_ControlTypePropertyId => (VARIANT)(int)UIA_CONTROLTYPE_ID.UIA_GroupControlTypeId, 186UIA_PROPERTY_ID.UIA_HasKeyboardFocusPropertyId => (VARIANT)(_owningListView.Focused && Focused), 187UIA_PROPERTY_ID.UIA_IsEnabledPropertyId => (VARIANT)_owningListView.Enabled, 188UIA_PROPERTY_ID.UIA_IsKeyboardFocusablePropertyId => (VARIANT)State.HasFlag(AccessibleStates.Focusable), 189UIA_PROPERTY_ID.UIA_NativeWindowHandlePropertyId => UIAHelper.WindowHandleToVariant(HWND.Null),
System\Windows\Forms\Controls\ListView\ListViewItem.ListViewItemBaseAccessibleObject.cs (8)
173internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) 177case UIA_PROPERTY_ID.UIA_ControlTypePropertyId: 179case UIA_PROPERTY_ID.UIA_HasKeyboardFocusPropertyId: 181case UIA_PROPERTY_ID.UIA_IsEnabledPropertyId: 183case UIA_PROPERTY_ID.UIA_IsKeyboardFocusablePropertyId: 185case UIA_PROPERTY_ID.UIA_IsOffscreenPropertyId: 191VARIANT result = base.GetPropertyValue(UIA_PROPERTY_ID.UIA_IsOffscreenPropertyId); 193case UIA_PROPERTY_ID.UIA_NativeWindowHandlePropertyId:
System\Windows\Forms\Controls\ListView\ListViewItem.ListViewItemImageAccessibleObject.cs (4)
56internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) 59UIA_PROPERTY_ID.UIA_ControlTypePropertyId => (VARIANT)(int)UIA_CONTROLTYPE_ID.UIA_ImageControlTypeId, 60UIA_PROPERTY_ID.UIA_HasKeyboardFocusPropertyId => VARIANT.False, 61UIA_PROPERTY_ID.UIA_IsKeyboardFocusablePropertyId => VARIANT.False,
System\Windows\Forms\Controls\ListView\ListViewItem.ListViewSubItem.ListViewSubItemAccessibleObject.cs (6)
115internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) 122UIA_PROPERTY_ID.UIA_ControlTypePropertyId => (VARIANT)(int)UIA_CONTROLTYPE_ID.UIA_TextControlTypeId, 123UIA_PROPERTY_ID.UIA_HasKeyboardFocusPropertyId => (VARIANT)(_owningListView.Focused && _owningListView.FocusedItem == _owningItem), 124UIA_PROPERTY_ID.UIA_IsEnabledPropertyId => (VARIANT)_owningListView.Enabled, 125UIA_PROPERTY_ID.UIA_IsKeyboardFocusablePropertyId => (VARIANT)State.HasFlag(AccessibleStates.Focusable), 126UIA_PROPERTY_ID.UIA_ProcessIdPropertyId => (VARIANT)Environment.ProcessId,
System\Windows\Forms\Controls\ListView\ListViewLabelEditAccessibleObject.cs (2)
47internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) => 50UIA_PROPERTY_ID.UIA_IsEnabledPropertyId => _owningListView.TryGetTarget(out ListView? target) ? (VARIANT)target.Enabled : VARIANT.False,
System\Windows\Forms\Controls\Menus\MenuStrip.MenuStripAccessibleObject.cs (3)
20internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) => 23UIA_PROPERTY_ID.UIA_IsControlElementPropertyId => VARIANT.True, 24UIA_PROPERTY_ID.UIA_IsContentElementPropertyId => VARIANT.False,
System\Windows\Forms\Controls\MonthCalendar\MonthCalendar.CalendarAccessibleObject.cs (3)
180internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) 183UIA_PROPERTY_ID.UIA_ControlTypePropertyId => (VARIANT)(int)UIA_CONTROLTYPE_ID.UIA_PaneControlTypeId, 184UIA_PROPERTY_ID.UIA_IsKeyboardFocusablePropertyId => (VARIANT)IsEnabled,
System\Windows\Forms\Controls\MonthCalendar\MonthCalendar.CalendarBodyAccessibleObject.cs (3)
139internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) 142UIA_PROPERTY_ID.UIA_ControlTypePropertyId => (VARIANT)(int)UIA_CONTROLTYPE_ID.UIA_TableControlTypeId, 143UIA_PROPERTY_ID.UIA_IsKeyboardFocusablePropertyId => (VARIANT)IsEnabled,
System\Windows\Forms\Controls\MonthCalendar\MonthCalendar.CalendarButtonAccessibleObject.cs (2)
32internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) 35UIA_PROPERTY_ID.UIA_ControlTypePropertyId => (VARIANT)(int)UIA_CONTROLTYPE_ID.UIA_ButtonControlTypeId,
System\Windows\Forms\Controls\MonthCalendar\MonthCalendar.CalendarCellAccessibleObject.cs (3)
133internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) 136UIA_PROPERTY_ID.UIA_ControlTypePropertyId => (VARIANT)(int)UIA_CONTROLTYPE_ID.UIA_DataItemControlTypeId, 137UIA_PROPERTY_ID.UIA_IsKeyboardFocusablePropertyId => (VARIANT)IsEnabled,
System\Windows\Forms\Controls\MonthCalendar\MonthCalendar.CalendarDayOfWeekCellAccessibleObject.cs (3)
47internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) 50UIA_PROPERTY_ID.UIA_ControlTypePropertyId => (VARIANT)(int)UIA_CONTROLTYPE_ID.UIA_HeaderControlTypeId, 51UIA_PROPERTY_ID.UIA_IsKeyboardFocusablePropertyId => VARIANT.False,
System\Windows\Forms\Controls\MonthCalendar\MonthCalendar.CalendarRowAccessibleObject.cs (3)
159internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) 162UIA_PROPERTY_ID.UIA_ControlTypePropertyId => (VARIANT)(int)UIA_CONTROLTYPE_ID.UIA_PaneControlTypeId, 163UIA_PROPERTY_ID.UIA_IsKeyboardFocusablePropertyId => (VARIANT)IsEnabled,
System\Windows\Forms\Controls\MonthCalendar\MonthCalendar.CalendarWeekNumberCellAccessibleObject.cs (3)
54internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) 57UIA_PROPERTY_ID.UIA_ControlTypePropertyId => (VARIANT)(int)UIA_CONTROLTYPE_ID.UIA_HeaderControlTypeId, 58UIA_PROPERTY_ID.UIA_IsKeyboardFocusablePropertyId => VARIANT.False,
System\Windows\Forms\Controls\MonthCalendar\MonthCalendar.MonthCalendarAccessibleObject.cs (3)
424internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) 427UIA_PROPERTY_ID.UIA_ControlTypePropertyId when 430UIA_PROPERTY_ID.UIA_IsKeyboardFocusablePropertyId => (VARIANT)IsEnabled,
System\Windows\Forms\Controls\MonthCalendar\MonthCalendar.MonthCalendarChildAccessibleObject.cs (4)
23internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) 26UIA_PROPERTY_ID.UIA_HasKeyboardFocusPropertyId => (VARIANT)HasKeyboardFocus, 27UIA_PROPERTY_ID.UIA_IsEnabledPropertyId => (VARIANT)IsEnabled, 28UIA_PROPERTY_ID.UIA_IsKeyboardFocusablePropertyId => VARIANT.False,
System\Windows\Forms\Controls\PictureBox\PictureBox.PictureBoxAccessibleObject.cs (3)
17internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) 20UIA_PROPERTY_ID.UIA_ControlTypePropertyId when this.GetOwnerAccessibleRole() == AccessibleRole.Default 25UIA_PROPERTY_ID.UIA_IsKeyboardFocusablePropertyId => VARIANT.True,
System\Windows\Forms\Controls\ProgressBar\ProgressBar.ProgressBarAccessibleObject.cs (8)
25internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) => 28UIA_PROPERTY_ID.UIA_ControlTypePropertyId when this.GetOwnerAccessibleRole() == AccessibleRole.Default 33UIA_PROPERTY_ID.UIA_IsKeyboardFocusablePropertyId => 37UIA_PROPERTY_ID.UIA_IsRangeValuePatternAvailablePropertyId => VARIANT.True, 38UIA_PROPERTY_ID.UIA_IsValuePatternAvailablePropertyId => VARIANT.True, 39UIA_PROPERTY_ID.UIA_RangeValueIsReadOnlyPropertyId => VARIANT.True, 40UIA_PROPERTY_ID.UIA_RangeValueLargeChangePropertyId => (VARIANT)double.NaN, 41UIA_PROPERTY_ID.UIA_RangeValueSmallChangePropertyId => (VARIANT)double.NaN,
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\CategoryGridEntry.CategoryGridEntryAccessibleObject.cs (3)
89internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) => propertyID switch 93UIA_PROPERTY_ID.UIA_ControlTypePropertyId => (VARIANT)(int)UIA_CONTROLTYPE_ID.UIA_TreeItemControlTypeId, 94UIA_PROPERTY_ID.UIA_LocalizedControlTypePropertyId => (VARIANT)SR.CategoryPropertyGridLocalizedControlType,
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\CommandsPane.CommandsPaneAccessibleObject.cs (2)
43internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) 46UIA_PROPERTY_ID.UIA_ControlTypePropertyId => (VARIANT)(int)UIA_CONTROLTYPE_ID.UIA_PaneControlTypeId,
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\DetailsButton.DetailsButtonAccessibleObject.cs (2)
26internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) 27=> propertyID == UIA_PROPERTY_ID.UIA_ControlTypePropertyId
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\DropDownButton.DropDownButtonAccessibleObject.cs (2)
69internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) => 72UIA_PROPERTY_ID.UIA_ControlTypePropertyId => (VARIANT)(int)UIA_CONTROLTYPE_ID.UIA_ButtonControlTypeId,
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\GridEntry.GridEntryAccessibleObject.cs (5)
346internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) 355UIA_PROPERTY_ID.UIA_ControlTypePropertyId => (VARIANT)(int)UIA_CONTROLTYPE_ID.UIA_TreeItemControlTypeId, 356UIA_PROPERTY_ID.UIA_HasKeyboardFocusPropertyId => (VARIANT)(this.TryGetOwnerAs(out GridEntry? owner) && owner.HasFocus), 357UIA_PROPERTY_ID.UIA_IsEnabledPropertyId => VARIANT.True, 358UIA_PROPERTY_ID.UIA_IsKeyboardFocusablePropertyId => (VARIANT)State.HasFlag(AccessibleStates.Focusable),
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\HelpPane.HelpPaneAccessibleObject.cs (2)
43internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) 46UIA_PROPERTY_ID.UIA_ControlTypePropertyId => (VARIANT)(int)UIA_CONTROLTYPE_ID.UIA_PaneControlTypeId,
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyDescriptorGridEntry.PropertyDescriptorGridEntryAccessibleObject.cs (4)
259internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) => 262UIA_PROPERTY_ID.UIA_IsEnabledPropertyId 264UIA_PROPERTY_ID.UIA_IsValuePatternAvailablePropertyId => VARIANT.True, 265UIA_PROPERTY_ID.UIA_LegacyIAccessibleDefaultActionPropertyId => (VARIANT)string.Empty,
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.cs (2)
823UIA_PROPERTY_ID.UIA_ExpandCollapseExpandCollapseStatePropertyId, 4527UIA_PROPERTY_ID.UIA_ExpandCollapseExpandCollapseStatePropertyId,
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.GridViewTextBox.GridViewTextBoxAccessibleObject.cs (5)
66internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) => propertyID switch 68UIA_PROPERTY_ID.UIA_ClassNamePropertyId when this.TryGetOwnerAs(out object? owner) => (VARIANT)owner.GetType().ToString(), 69UIA_PROPERTY_ID.UIA_ControlTypePropertyId => (VARIANT)(int)UIA_CONTROLTYPE_ID.UIA_EditControlTypeId, 70UIA_PROPERTY_ID.UIA_HasKeyboardFocusPropertyId => (VARIANT)(this.TryGetOwnerAs(out Control? owner) && owner.Focused), 71UIA_PROPERTY_ID.UIA_IsEnabledPropertyId => (VARIANT)!IsReadOnly,
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.PropertyGridViewAccessibleObject.cs (2)
62internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) 65UIA_PROPERTY_ID.UIA_ControlTypePropertyId => (VARIANT)(int)UIA_CONTROLTYPE_ID.UIA_TableControlTypeId,
System\Windows\Forms\Controls\PropertyGrid\PropertyGridToolStrip.PropertyGridToolStripAccessibleObject.cs (2)
44internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) 47UIA_PROPERTY_ID.UIA_ControlTypePropertyId => (VARIANT)(int)UIA_CONTROLTYPE_ID.UIA_ToolBarControlTypeId,
System\Windows\Forms\Controls\Splitter\Splitter.SplitterAccessibleObject.cs (3)
17internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) 20UIA_PROPERTY_ID.UIA_ControlTypePropertyId when this.GetOwnerAccessibleRole() == AccessibleRole.Default 24UIA_PROPERTY_ID.UIA_IsKeyboardFocusablePropertyId
System\Windows\Forms\Controls\TabControl\TabControl.TabControlAccessibleObject.cs (3)
128internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) 131UIA_PROPERTY_ID.UIA_HasKeyboardFocusPropertyId => (VARIANT)(this.TryGetOwnerAs(out TabControl? owner) && owner.Focused), 132UIA_PROPERTY_ID.UIA_IsKeyboardFocusablePropertyId
System\Windows\Forms\Controls\TabControl\TabPage.TabAccessibleObject.cs (5)
118internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) 121UIA_PROPERTY_ID.UIA_ControlTypePropertyId => (VARIANT)(int)UIA_CONTROLTYPE_ID.UIA_TabItemControlTypeId, 122UIA_PROPERTY_ID.UIA_HasKeyboardFocusPropertyId => (VARIANT)State.HasFlag(AccessibleStates.Focused), 123UIA_PROPERTY_ID.UIA_IsEnabledPropertyId => (VARIANT)(OwningTabControl?.Enabled ?? false), 124UIA_PROPERTY_ID.UIA_IsKeyboardFocusablePropertyId
System\Windows\Forms\Controls\TabControl\TabPage.TabPageAccessibleObject.cs (3)
64internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) 67UIA_PROPERTY_ID.UIA_HasKeyboardFocusPropertyId => (VARIANT)(this.TryGetOwnerAs(out TabPage? owningTabPage) && owningTabPage.Focused), 68UIA_PROPERTY_ID.UIA_IsKeyboardFocusablePropertyId
System\Windows\Forms\Controls\TextBox\TextBox.TextBoxAccessibleObject.cs (2)
16internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) 20case UIA_PROPERTY_ID.UIA_HelpTextPropertyId:
System\Windows\Forms\Controls\TextBox\TextBoxBase.cs (1)
1548AccessibilityObject.RaiseAutomationPropertyChangedEvent(UIA_PROPERTY_ID.UIA_ValueValuePropertyId, textVariant, textVariant);
System\Windows\Forms\Controls\TextBox\TextBoxBase.TextBoxBaseAccessibleObject.cs (3)
28internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) 32if (propertyID == UIA_PROPERTY_ID.UIA_IsPasswordPropertyId) 37if (propertyID == UIA_PROPERTY_ID.UIA_HasKeyboardFocusPropertyId)
System\Windows\Forms\Controls\TextBox\TextBoxBase.TextBoxBaseUiaTextProvider.cs (1)
171VARIANT hasKeyboardFocus = Owner.AccessibilityObject.GetPropertyValue(UIA_PROPERTY_ID.UIA_HasKeyboardFocusPropertyId);
System\Windows\Forms\Controls\ToolStrips\ToolStripButton.ToolStripButtonAccessibleObject.cs (1)
85UIA_PROPERTY_ID.UIA_ToggleToggleStatePropertyId,
System\Windows\Forms\Controls\ToolStrips\ToolStripContainer.ToolStripContainerAccessibleObject.cs (3)
17internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) 20UIA_PROPERTY_ID.UIA_HasKeyboardFocusPropertyId => (VARIANT)(this.TryGetOwnerAs(out ToolStripContainer? owner) && owner.Focused), 21UIA_PROPERTY_ID.UIA_IsKeyboardFocusablePropertyId => (VARIANT)State.HasFlag(AccessibleStates.Focusable),
System\Windows\Forms\Controls\ToolStrips\ToolStripControlHost.ToolStripHostedControlAccessibleObject.cs (3)
56internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) => 59UIA_PROPERTY_ID.UIA_HasKeyboardFocusPropertyId => (VARIANT)State.HasFlag(AccessibleStates.Focused), 60UIA_PROPERTY_ID.UIA_IsOffscreenPropertyId => (VARIANT)GetIsOffscreenPropertyValue(_toolStripControlHost?.Placement, Bounds),
System\Windows\Forms\Controls\ToolStrips\ToolStripDropDown.ToolStripDropDownAccessibleObject.cs (2)
17internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) => 20UIA_PROPERTY_ID.UIA_IsKeyboardFocusablePropertyId => (VARIANT)State.HasFlag(AccessibleStates.Focusable),
System\Windows\Forms\Controls\ToolStrips\ToolStripDropDownButton.ToolStripDropDownButtonAccessibleObject.cs (2)
24internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) => 30UIA_PROPERTY_ID.UIA_ControlTypePropertyId when
System\Windows\Forms\Controls\ToolStrips\ToolStripDropDownItem.cs (2)
506UIA_PROPERTY_ID.UIA_ExpandCollapseExpandCollapseStatePropertyId, 535UIA_PROPERTY_ID.UIA_ExpandCollapseExpandCollapseStatePropertyId,
System\Windows\Forms\Controls\ToolStrips\ToolStripDropDownItemAccessibleObject.cs (2)
62internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) => 65UIA_PROPERTY_ID.UIA_IsOffscreenPropertyId when
System\Windows\Forms\Controls\ToolStrips\ToolStripDropDownMenu.ToolStripDropDownMenuAccessibleObject.cs (3)
24internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) => 27UIA_PROPERTY_ID.UIA_IsControlElementPropertyId => VARIANT.True, 28UIA_PROPERTY_ID.UIA_IsContentElementPropertyId => (VARIANT)this.TryGetOwnerAs(out ContextMenuStrip? _),
System\Windows\Forms\Controls\ToolStrips\ToolStripGrip.ToolStripGripAccessibleObject.cs (2)
36internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) => 39UIA_PROPERTY_ID.UIA_IsOffscreenPropertyId => VARIANT.False,
System\Windows\Forms\Controls\ToolStrips\ToolStripItem.ToolStripItemAccessibleObject.cs (8)
104internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) => 109UIA_PROPERTY_ID.UIA_ControlTypePropertyId => (VARIANT)(int)AccessibleRoleControlTypeMap.GetControlType(Role), 110UIA_PROPERTY_ID.UIA_HasKeyboardFocusPropertyId => (VARIANT)_ownerItem.Selected, 111UIA_PROPERTY_ID.UIA_IsEnabledPropertyId => (VARIANT)_ownerItem.Enabled, 112UIA_PROPERTY_ID.UIA_IsKeyboardFocusablePropertyId => (VARIANT)_ownerItem.CanSelect, 113UIA_PROPERTY_ID.UIA_IsOffscreenPropertyId => (VARIANT)GetIsOffscreenPropertyValue(_ownerItem.Placement, Bounds), 114UIA_PROPERTY_ID.UIA_IsControlElementPropertyId => VARIANT.True, 115UIA_PROPERTY_ID.UIA_IsContentElementPropertyId => VARIANT.True,
System\Windows\Forms\Controls\ToolStrips\ToolStripMenuItem.ToolStripMenuItemAccessibleObject.cs (6)
49internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) => 52UIA_PROPERTY_ID.UIA_AcceleratorKeyPropertyId => _owningToolStripMenuItem.GetShortcutText() is { } shortcutText ? (VARIANT)shortcutText : VARIANT.Empty, 53UIA_PROPERTY_ID.UIA_PositionInSetPropertyId => GetPositionInSet() is { } position ? (VARIANT)position : VARIANT.Empty, 54UIA_PROPERTY_ID.UIA_SizeOfSetPropertyId => GetSizeOfSet() is { } size ? (VARIANT)size : VARIANT.Empty, 59/// Gets <see cref="UIA_PROPERTY_ID.UIA_PositionInSetPropertyId"/> property value. 94/// Gets <see cref="UIA_PROPERTY_ID.UIA_SizeOfSetPropertyId"/> property value.
System\Windows\Forms\Controls\ToolStrips\ToolStripNumericUpDown.ToolStripNumericUpDownControl.ToolStripNumericUpDownAccessibleObject.cs (2)
20internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) => 26UIA_PROPERTY_ID.UIA_ControlTypePropertyId when this.GetOwnerAccessibleRole() == AccessibleRole.Default
System\Windows\Forms\Controls\ToolStrips\ToolStripOverflow.ToolStripOverflowAccessibleObject.cs (3)
36internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) 39UIA_PROPERTY_ID.UIA_IsControlElementPropertyId => VARIANT.True, 40UIA_PROPERTY_ID.UIA_IsContentElementPropertyId => VARIANT.False,
System\Windows\Forms\Controls\ToolStrips\ToolStripPanel.ToolStripPanelAccessibleObject.cs (2)
19internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyId) => propertyId switch 21UIA_PROPERTY_ID.UIA_IsKeyboardFocusablePropertyId => (VARIANT)(this.TryGetOwnerAs(out ToolStripPanel? owner) && owner.CanFocus),
System\Windows\Forms\Controls\ToolStrips\ToolStripProgressBar.ToolStripProgressBarControlAccessibleObject.cs (2)
33internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) => 36UIA_PROPERTY_ID.UIA_IsOffscreenPropertyId => (VARIANT)GetIsOffscreenPropertyValue(_ownerToolStripProgressBarControl.Owner?.Placement, Bounds),
System\Windows\Forms\Controls\ToolStrips\ToolStripScrollButton.StickyLabelAccessibleObject.cs (2)
58internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) => propertyID switch 60UIA_PROPERTY_ID.UIA_ControlTypePropertyId => (VARIANT)(int)UIA_CONTROLTYPE_ID.UIA_ButtonControlTypeId,
System\Windows\Forms\Controls\ToolStrips\ToolStripSplitButton.ToolStripSplitButtonExAccessibleObject.cs (2)
21internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) => 27UIA_PROPERTY_ID.UIA_ControlTypePropertyId when
System\Windows\Forms\Controls\ToolStrips\ToolStripSplitButton.ToolStripSplitButtonUiaProvider.cs (1)
23internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID)
System\Windows\Forms\Controls\ToolStrips\ToolStripStatusLabel.ToolStripStatusLabelAccessibleObject.cs (2)
29internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) => 32UIA_PROPERTY_ID.UIA_LiveSettingPropertyId => (VARIANT)(int)_owningToolStripStatusLabel.LiveSetting,
System\Windows\Forms\Controls\ToolStrips\ToolStripTextBox.ToolStripTextBoxControlAccessibleObject.cs (4)
17internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) 22UIA_PROPERTY_ID.UIA_ControlTypePropertyId when this.GetOwnerAccessibleRole() == AccessibleRole.Default 24UIA_PROPERTY_ID.UIA_HasKeyboardFocusPropertyId => (VARIANT)State.HasFlag(AccessibleStates.Focused), 25UIA_PROPERTY_ID.UIA_IsOffscreenPropertyId when this.TryGetOwnerAs(out TextBox? owner) => (VARIANT)GetIsOffscreenPropertyValue(owner.ToolStripControlHost?.Placement, Bounds),
System\Windows\Forms\Controls\TrackBar\TrackBar.cs (1)
983AccessibilityObject.RaiseAutomationPropertyChangedEvent(UIA_PROPERTY_ID.UIA_ValueValuePropertyId, nameVariant, nameVariant);
System\Windows\Forms\Controls\TrackBar\TrackBar.TrackBarAccessibleObject.cs (4)
150internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) 153UIA_PROPERTY_ID.UIA_ControlTypePropertyId when this.GetOwnerAccessibleRole() == AccessibleRole.Default 155UIA_PROPERTY_ID.UIA_HasKeyboardFocusPropertyId => (VARIANT)(this.TryGetOwnerAs(out TrackBar? owner) && owner.Focused), 156UIA_PROPERTY_ID.UIA_IsKeyboardFocusablePropertyId
System\Windows\Forms\Controls\TrackBar\TrackBar.TrackBarChildAccessibleObject.cs (5)
72internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) 75UIA_PROPERTY_ID.UIA_ControlTypePropertyId => (VARIANT)(int)UIA_CONTROLTYPE_ID.UIA_ButtonControlTypeId, 76UIA_PROPERTY_ID.UIA_HasKeyboardFocusPropertyId => VARIANT.False, 77UIA_PROPERTY_ID.UIA_IsEnabledPropertyId => (VARIANT)(this.TryGetOwnerAs(out TrackBar? owner) && owner.Enabled), 78UIA_PROPERTY_ID.UIA_IsKeyboardFocusablePropertyId => VARIANT.False,
System\Windows\Forms\Controls\TrackBar\TrackBar.TrackBarThumbAccessibleObject.cs (2)
45internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) 48UIA_PROPERTY_ID.UIA_ControlTypePropertyId => (VARIANT)(int)UIA_CONTROLTYPE_ID.UIA_ThumbControlTypeId,
System\Windows\Forms\Controls\TreeView\TreeNode.TreeNodeAccessibleObject.cs (6)
109internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) 112UIA_PROPERTY_ID.UIA_ControlTypePropertyId => (VARIANT)(int)UIA_CONTROLTYPE_ID.UIA_TreeItemControlTypeId, 113UIA_PROPERTY_ID.UIA_HasKeyboardFocusPropertyId => (VARIANT)State.HasFlag(AccessibleStates.Focused), 114UIA_PROPERTY_ID.UIA_IsEnabledPropertyId => (VARIANT)_owningTreeView.Enabled, 115UIA_PROPERTY_ID.UIA_IsKeyboardFocusablePropertyId => (VARIANT)State.HasFlag(AccessibleStates.Focusable), 116UIA_PROPERTY_ID.UIA_LevelPropertyId => (VARIANT)(_owningTreeNode.Level + 1),
System\Windows\Forms\Controls\TreeView\TreeView.cs (4)
2129UIA_PROPERTY_ID.UIA_ToggleToggleStatePropertyId, 2152UIA_PROPERTY_ID.UIA_ExpandCollapseExpandCollapseStatePropertyId, 2175UIA_PROPERTY_ID.UIA_ExpandCollapseExpandCollapseStatePropertyId, 2220UIA_PROPERTY_ID.UIA_SelectionItemIsSelectedPropertyId,
System\Windows\Forms\Controls\TreeView\TreeView.TreeViewAccessibleObject.cs (5)
46internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) 49UIA_PROPERTY_ID.UIA_ControlTypePropertyId => (VARIANT)(int)UIA_CONTROLTYPE_ID.UIA_TreeControlTypeId, 50UIA_PROPERTY_ID.UIA_HasKeyboardFocusPropertyId => (VARIANT)(this.TryGetOwnerAs(out TreeView? owningTreeView) 52UIA_PROPERTY_ID.UIA_IsEnabledPropertyId => (VARIANT)(this.TryGetOwnerAs(out TreeView? owningTreeView) && owningTreeView.Enabled), 53UIA_PROPERTY_ID.UIA_IsKeyboardFocusablePropertyId => (VARIANT)State.HasFlag(AccessibleStates.Focusable),
System\Windows\Forms\Controls\TreeView\TreeViewLabelEditAccessibleObject.cs (2)
36internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) => 39UIA_PROPERTY_ID.UIA_IsEnabledPropertyId => _owningTreeView.TryGetTarget(out TreeView? target) ? (VARIANT)target.Enabled : VARIANT.False,
System\Windows\Forms\Controls\UpDown\UpDownBase.UpDownButtons.UpDownButtonsAccessibleObject.DirectionButtonAccessibleObject.cs (2)
76internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) => propertyID switch 78UIA_PROPERTY_ID.UIA_ControlTypePropertyId => (VARIANT)(int)UIA_CONTROLTYPE_ID.UIA_ButtonControlTypeId,
System\Windows\Forms\Controls\WebBrowser\WebBrowser.WebBrowserAccessibleObject.cs (2)
16internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) 19UIA_PROPERTY_ID.UIA_HasKeyboardFocusPropertyId => (VARIANT)(this.TryGetOwnerAs(out WebBrowser? owner) && owner.Focused),
System\Windows\Forms\ErrorProvider\ErrorProvider.ControlItem.ControlItemAccessibleObject.cs (3)
84internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) => 87UIA_PROPERTY_ID.UIA_ControlTypePropertyId 89UIA_PROPERTY_ID.UIA_NativeWindowHandlePropertyId
System\Windows\Forms\ErrorProvider\ErrorProvider.ErrorWindow.ErrorWindowAccessibleObject.cs (3)
58internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) => 61UIA_PROPERTY_ID.UIA_ControlTypePropertyId => (VARIANT)(int)UIA_CONTROLTYPE_ID.UIA_GroupControlTypeId, 62UIA_PROPERTY_ID.UIA_NativeWindowHandlePropertyId => UIAHelper.WindowHandleToVariant(_owner.Handle),
System\Windows\Forms\Form.AccessibleObject.cs (3)
30internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) => 36UIA_PROPERTY_ID.UIA_ControlTypePropertyId when 39UIA_PROPERTY_ID.UIA_IsDialogPropertyId => (VARIANT)(this.TryGetOwnerAs(out Form? owner) && owner.Modal),
System\Windows\Forms\Layout\Containers\SplitContainer.SplitContainerAccessibleObject.cs (4)
17internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) 20UIA_PROPERTY_ID.UIA_AutomationIdPropertyId when this.TryGetOwnerAs(out SplitContainer? owner) => (VARIANT)owner.Name, 21UIA_PROPERTY_ID.UIA_HasKeyboardFocusPropertyId => (VARIANT)(this.TryGetOwnerAs(out SplitContainer? owner) && owner.Focused), 22UIA_PROPERTY_ID.UIA_IsKeyboardFocusablePropertyId => (VARIANT)State.HasFlag(AccessibleStates.Focusable),
System\Windows\Forms\Panels\Panel.PanelAccessibleObject.cs (2)
33internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) 36UIA_PROPERTY_ID.UIA_IsKeyboardFocusablePropertyId => VARIANT.False,
System\Windows\Forms\Printing\PrintPreviewControl.PrintPreviewControlAccessibleObject.cs (4)
19internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) 22UIA_PROPERTY_ID.UIA_AutomationIdPropertyId => (VARIANT)owner.Name, 23UIA_PROPERTY_ID.UIA_HasKeyboardFocusPropertyId => (VARIANT)owner.Focused, 24UIA_PROPERTY_ID.UIA_IsKeyboardFocusablePropertyId => (VARIANT)State.HasFlag(AccessibleStates.Focusable),
System\Windows\Forms\Printing\StatusDialogAccessibility.cs (2)
19internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) => 22UIA_PROPERTY_ID.UIA_IsDialogPropertyId => VARIANT.True,
System\Windows\Forms\Scrolling\ScrollBar.cs (1)
365AccessibilityObject.RaiseAutomationPropertyChangedEvent(UIA_PROPERTY_ID.UIA_RangeValueValuePropertyId, (VARIANT)(double)oldValue, (VARIANT)(double)_value);
System\Windows\Forms\Scrolling\ScrollBar.ScrollBarAccessibleObject.cs (10)
136internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) 142UIA_PROPERTY_ID.UIA_ControlTypePropertyId when 145UIA_PROPERTY_ID.UIA_HasKeyboardFocusPropertyId => (VARIANT)(this.TryGetOwnerAs(out ScrollBar? owner) && owner.Focused), 146UIA_PROPERTY_ID.UIA_RangeValueValuePropertyId => (VARIANT)RangeValue, 147UIA_PROPERTY_ID.UIA_RangeValueIsReadOnlyPropertyId => (VARIANT)IsReadOnly, 148UIA_PROPERTY_ID.UIA_RangeValueLargeChangePropertyId => (VARIANT)LargeChange, 149UIA_PROPERTY_ID.UIA_RangeValueSmallChangePropertyId => (VARIANT)SmallChange, 150UIA_PROPERTY_ID.UIA_RangeValueMaximumPropertyId => (VARIANT)Maximum, 151UIA_PROPERTY_ID.UIA_RangeValueMinimumPropertyId => (VARIANT)Minimum, 152UIA_PROPERTY_ID.UIA_IsRangeValuePatternAvailablePropertyId => (VARIANT)IsPatternSupported(UIA_PATTERN_ID.UIA_RangeValuePatternId),
System\Windows\Forms\Scrolling\ScrollBar.ScrollBarChildAccessibleObject.cs (5)
79internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) 82UIA_PROPERTY_ID.UIA_ControlTypePropertyId => (VARIANT)(int)UIA_CONTROLTYPE_ID.UIA_ButtonControlTypeId, 83UIA_PROPERTY_ID.UIA_HasKeyboardFocusPropertyId => VARIANT.False, 84UIA_PROPERTY_ID.UIA_IsEnabledPropertyId => (VARIANT)OwningScrollBar.Enabled, 85UIA_PROPERTY_ID.UIA_IsKeyboardFocusablePropertyId => VARIANT.False,
System\Windows\Forms\Scrolling\ScrollBar.ScrollBarThumbAccessibleObject.cs (2)
46internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) 49UIA_PROPERTY_ID.UIA_ControlTypePropertyId => (VARIANT)(int)UIA_CONTROLTYPE_ID.UIA_ThumbControlTypeId,
System.Windows.Forms.Primitives (92)
_generated\234\Windows.Win32.IRawElementProviderSimple.g.cs (7)
135 /// <inheritdoc cref="GetPropertyValue(winmdroot.UI.Accessibility.UIA_PROPERTY_ID, winmdroot.System.Variant.VARIANT*)"/> 136 internal unsafe winmdroot.Foundation.HRESULT GetPropertyValue(winmdroot.UI.Accessibility.UIA_PROPERTY_ID propertyId, out winmdroot.System.Variant.VARIANT pRetVal) 148 private static winmdroot.Foundation.HRESULT GetPropertyValue(IRawElementProviderSimple* pThis, winmdroot.UI.Accessibility.UIA_PROPERTY_ID propertyId, winmdroot.System.Variant.VARIANT* pRetVal) 183 public unsafe winmdroot.Foundation.HRESULT GetPropertyValue(winmdroot.UI.Accessibility.UIA_PROPERTY_ID propertyId, winmdroot.System.Variant.VARIANT* pRetVal) 185 return ((delegate *unmanaged [Stdcall]<IRawElementProviderSimple*,winmdroot.UI.Accessibility.UIA_PROPERTY_ID ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IRawElementProviderSimple*)Unsafe.AsPointer(ref this), propertyId, pRetVal); 249 internal delegate *unmanaged [Stdcall]<IRawElementProviderSimple*,winmdroot.UI.Accessibility.UIA_PROPERTY_ID ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> GetPropertyValue_6; 287 unsafe winmdroot.Foundation.HRESULT GetPropertyValue(winmdroot.UI.Accessibility.UIA_PROPERTY_ID propertyId, winmdroot.System.Variant.VARIANT* pRetVal);
_generated\261\Windows.Win32.IUIAutomation.g.cs (23)
790 private static winmdroot.Foundation.HRESULT CreatePropertyCondition(IUIAutomation* pThis, winmdroot.UI.Accessibility.UIA_PROPERTY_ID propertyId, winmdroot.System.Variant.VARIANT value, winmdroot.UI.Accessibility.IUIAutomationCondition** newCondition) 822 public unsafe winmdroot.UI.Accessibility.IUIAutomationCondition* CreatePropertyCondition(winmdroot.UI.Accessibility.UIA_PROPERTY_ID propertyId, winmdroot.System.Variant.VARIANT value) 825 ((delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.UIA_PROPERTY_ID ,winmdroot.System.Variant.VARIANT ,winmdroot.UI.Accessibility.IUIAutomationCondition** ,winmdroot.Foundation.HRESULT>)lpVtbl[23])((IUIAutomation*)Unsafe.AsPointer(ref this), propertyId, value, &__retVal).ThrowOnFailure(); 832 private static winmdroot.Foundation.HRESULT CreatePropertyConditionEx(IUIAutomation* pThis, winmdroot.UI.Accessibility.UIA_PROPERTY_ID propertyId, winmdroot.System.Variant.VARIANT value, winmdroot.UI.Accessibility.PropertyConditionFlags flags, winmdroot.UI.Accessibility.IUIAutomationCondition** newCondition) 864 public unsafe winmdroot.UI.Accessibility.IUIAutomationCondition* CreatePropertyConditionEx(winmdroot.UI.Accessibility.UIA_PROPERTY_ID propertyId, winmdroot.System.Variant.VARIANT value, winmdroot.UI.Accessibility.PropertyConditionFlags flags) 867 ((delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.UIA_PROPERTY_ID ,winmdroot.System.Variant.VARIANT ,winmdroot.UI.Accessibility.PropertyConditionFlags ,winmdroot.UI.Accessibility.IUIAutomationCondition** ,winmdroot.Foundation.HRESULT>)lpVtbl[24])((IUIAutomation*)Unsafe.AsPointer(ref this), propertyId, value, flags, &__retVal).ThrowOnFailure(); 1234 /// <inheritdoc cref="AddPropertyChangedEventHandlerNativeArray(winmdroot.UI.Accessibility.IUIAutomationElement*, winmdroot.UI.Accessibility.TreeScope, winmdroot.UI.Accessibility.IUIAutomationCacheRequest*, winmdroot.UI.Accessibility.IUIAutomationPropertyChangedEventHandler*, winmdroot.UI.Accessibility.UIA_PROPERTY_ID*, int)"/> 1235 internal unsafe void AddPropertyChangedEventHandlerNativeArray(winmdroot.UI.Accessibility.IUIAutomationElement* element, winmdroot.UI.Accessibility.TreeScope scope, winmdroot.UI.Accessibility.IUIAutomationCacheRequest* cacheRequest, winmdroot.UI.Accessibility.IUIAutomationPropertyChangedEventHandler* handler, ReadOnlySpan<winmdroot.UI.Accessibility.UIA_PROPERTY_ID> propertyArray) 1237 fixed (winmdroot.UI.Accessibility.UIA_PROPERTY_ID* propertyArrayLocal = propertyArray) 1246 private static winmdroot.Foundation.HRESULT AddPropertyChangedEventHandlerNativeArray(IUIAutomation* pThis, winmdroot.UI.Accessibility.IUIAutomationElement* element, winmdroot.UI.Accessibility.TreeScope scope, winmdroot.UI.Accessibility.IUIAutomationCacheRequest* cacheRequest, winmdroot.UI.Accessibility.IUIAutomationPropertyChangedEventHandler* handler, winmdroot.UI.Accessibility.UIA_PROPERTY_ID* propertyArray, int propertyCount) 1292 public unsafe void AddPropertyChangedEventHandlerNativeArray(winmdroot.UI.Accessibility.IUIAutomationElement* element, winmdroot.UI.Accessibility.TreeScope scope, winmdroot.UI.Accessibility.IUIAutomationCacheRequest* cacheRequest, winmdroot.UI.Accessibility.IUIAutomationPropertyChangedEventHandler* handler, winmdroot.UI.Accessibility.UIA_PROPERTY_ID* propertyArray, int propertyCount) 1294 ((delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationElement* ,winmdroot.UI.Accessibility.TreeScope ,winmdroot.UI.Accessibility.IUIAutomationCacheRequest* ,winmdroot.UI.Accessibility.IUIAutomationPropertyChangedEventHandler* ,winmdroot.UI.Accessibility.UIA_PROPERTY_ID* ,int ,winmdroot.Foundation.HRESULT>)lpVtbl[34])((IUIAutomation*)Unsafe.AsPointer(ref this), element, scope, cacheRequest, handler, propertyArray, propertyCount).ThrowOnFailure(); 1866 private static winmdroot.Foundation.HRESULT GetPropertyProgrammaticName(IUIAutomation* pThis, winmdroot.UI.Accessibility.UIA_PROPERTY_ID property, winmdroot.Foundation.BSTR* name) 1895 public winmdroot.Foundation.BSTR GetPropertyProgrammaticName(winmdroot.UI.Accessibility.UIA_PROPERTY_ID property) 1898 ((delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.UIA_PROPERTY_ID ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[49])((IUIAutomation*)Unsafe.AsPointer(ref this), property, &__retVal).ThrowOnFailure(); 2314 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.UIA_PROPERTY_ID ,winmdroot.System.Variant.VARIANT ,winmdroot.UI.Accessibility.IUIAutomationCondition** ,winmdroot.Foundation.HRESULT> CreatePropertyCondition_24; 2316 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.UIA_PROPERTY_ID ,winmdroot.System.Variant.VARIANT ,winmdroot.UI.Accessibility.PropertyConditionFlags ,winmdroot.UI.Accessibility.IUIAutomationCondition** ,winmdroot.Foundation.HRESULT> CreatePropertyConditionEx_25; 2336 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationElement* ,winmdroot.UI.Accessibility.TreeScope ,winmdroot.UI.Accessibility.IUIAutomationCacheRequest* ,winmdroot.UI.Accessibility.IUIAutomationPropertyChangedEventHandler* ,winmdroot.UI.Accessibility.UIA_PROPERTY_ID* ,int ,winmdroot.Foundation.HRESULT> AddPropertyChangedEventHandlerNativeArray_35; 2366 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.UIA_PROPERTY_ID ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> GetPropertyProgrammaticName_50; 2535 unsafe winmdroot.Foundation.HRESULT CreatePropertyCondition(winmdroot.UI.Accessibility.UIA_PROPERTY_ID propertyId, winmdroot.System.Variant.VARIANT value, winmdroot.UI.Accessibility.IUIAutomationCondition** newCondition); 2538 unsafe winmdroot.Foundation.HRESULT CreatePropertyConditionEx(winmdroot.UI.Accessibility.UIA_PROPERTY_ID propertyId, winmdroot.System.Variant.VARIANT value, winmdroot.UI.Accessibility.PropertyConditionFlags flags, winmdroot.UI.Accessibility.IUIAutomationCondition** newCondition); 2568 unsafe winmdroot.Foundation.HRESULT AddPropertyChangedEventHandlerNativeArray(winmdroot.UI.Accessibility.IUIAutomationElement* element, winmdroot.UI.Accessibility.TreeScope scope, winmdroot.UI.Accessibility.IUIAutomationCacheRequest* cacheRequest, winmdroot.UI.Accessibility.IUIAutomationPropertyChangedEventHandler* handler, winmdroot.UI.Accessibility.UIA_PROPERTY_ID* propertyArray, int propertyCount); 2615 unsafe winmdroot.Foundation.HRESULT GetPropertyProgrammaticName(winmdroot.UI.Accessibility.UIA_PROPERTY_ID property, winmdroot.Foundation.BSTR* name);
_generated\262\Windows.Win32.IUIAutomationCacheRequest.g.cs (5)
58 private static winmdroot.Foundation.HRESULT AddProperty(IUIAutomationCacheRequest* pThis, winmdroot.UI.Accessibility.UIA_PROPERTY_ID propertyId) 86 public void AddProperty(winmdroot.UI.Accessibility.UIA_PROPERTY_ID propertyId) 88 ((delegate *unmanaged [Stdcall]<IUIAutomationCacheRequest*,winmdroot.UI.Accessibility.UIA_PROPERTY_ID ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IUIAutomationCacheRequest*)Unsafe.AsPointer(ref this), propertyId).ThrowOnFailure(); 365 internal delegate *unmanaged [Stdcall]<IUIAutomationCacheRequest*,winmdroot.UI.Accessibility.UIA_PROPERTY_ID ,winmdroot.Foundation.HRESULT> AddProperty_4; 416winmdroot.Foundation.HRESULT AddProperty(winmdroot.UI.Accessibility.UIA_PROPERTY_ID propertyId);
_generated\264\Windows.Win32.IUIAutomationElement.g.cs (20)
325 private static winmdroot.Foundation.HRESULT GetCurrentPropertyValue(IUIAutomationElement* pThis, winmdroot.UI.Accessibility.UIA_PROPERTY_ID propertyId, winmdroot.System.Variant.VARIANT* retVal) 351 public winmdroot.System.Variant.VARIANT GetCurrentPropertyValue(winmdroot.UI.Accessibility.UIA_PROPERTY_ID propertyId) 354 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.UIA_PROPERTY_ID ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IUIAutomationElement*)Unsafe.AsPointer(ref this), propertyId, &__retVal).ThrowOnFailure(); 361 private static winmdroot.Foundation.HRESULT GetCurrentPropertyValueEx(IUIAutomationElement* pThis, winmdroot.UI.Accessibility.UIA_PROPERTY_ID propertyId, winmdroot.Foundation.BOOL ignoreDefaultValue, winmdroot.System.Variant.VARIANT* retVal) 394 public winmdroot.System.Variant.VARIANT GetCurrentPropertyValueEx(winmdroot.UI.Accessibility.UIA_PROPERTY_ID propertyId, winmdroot.Foundation.BOOL ignoreDefaultValue) 397 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.UIA_PROPERTY_ID ,winmdroot.Foundation.BOOL ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IUIAutomationElement*)Unsafe.AsPointer(ref this), propertyId, ignoreDefaultValue, &__retVal).ThrowOnFailure(); 404 private static winmdroot.Foundation.HRESULT GetCachedPropertyValue(IUIAutomationElement* pThis, winmdroot.UI.Accessibility.UIA_PROPERTY_ID propertyId, winmdroot.System.Variant.VARIANT* retVal) 430 public winmdroot.System.Variant.VARIANT GetCachedPropertyValue(winmdroot.UI.Accessibility.UIA_PROPERTY_ID propertyId) 433 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.UIA_PROPERTY_ID ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IUIAutomationElement*)Unsafe.AsPointer(ref this), propertyId, &__retVal).ThrowOnFailure(); 440 private static winmdroot.Foundation.HRESULT GetCachedPropertyValueEx(IUIAutomationElement* pThis, winmdroot.UI.Accessibility.UIA_PROPERTY_ID propertyId, winmdroot.Foundation.BOOL ignoreDefaultValue, winmdroot.System.Variant.VARIANT* retVal) 473 public winmdroot.System.Variant.VARIANT GetCachedPropertyValueEx(winmdroot.UI.Accessibility.UIA_PROPERTY_ID propertyId, winmdroot.Foundation.BOOL ignoreDefaultValue) 476 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.UIA_PROPERTY_ID ,winmdroot.Foundation.BOOL ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IUIAutomationElement*)Unsafe.AsPointer(ref this), propertyId, ignoreDefaultValue, &__retVal).ThrowOnFailure(); 3017 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.UIA_PROPERTY_ID ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> GetCurrentPropertyValue_11; 3019 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.UIA_PROPERTY_ID ,winmdroot.Foundation.BOOL ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> GetCurrentPropertyValueEx_12; 3021 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.UIA_PROPERTY_ID ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> GetCachedPropertyValue_13; 3023 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.UIA_PROPERTY_ID ,winmdroot.Foundation.BOOL ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> GetCachedPropertyValueEx_14; 3294 unsafe winmdroot.Foundation.HRESULT GetCurrentPropertyValue(winmdroot.UI.Accessibility.UIA_PROPERTY_ID propertyId, winmdroot.System.Variant.VARIANT* retVal); 3297 unsafe winmdroot.Foundation.HRESULT GetCurrentPropertyValueEx(winmdroot.UI.Accessibility.UIA_PROPERTY_ID propertyId, winmdroot.Foundation.BOOL ignoreDefaultValue, winmdroot.System.Variant.VARIANT* retVal); 3300 unsafe winmdroot.Foundation.HRESULT GetCachedPropertyValue(winmdroot.UI.Accessibility.UIA_PROPERTY_ID propertyId, winmdroot.System.Variant.VARIANT* retVal); 3303 unsafe winmdroot.Foundation.HRESULT GetCachedPropertyValueEx(winmdroot.UI.Accessibility.UIA_PROPERTY_ID propertyId, winmdroot.Foundation.BOOL ignoreDefaultValue, winmdroot.System.Variant.VARIANT* retVal);
_generated\268\Windows.Win32.IUIAutomationPropertyChangedEventHandler.g.cs (5)
58 private static winmdroot.Foundation.HRESULT HandlePropertyChangedEvent(IUIAutomationPropertyChangedEventHandler* pThis, winmdroot.UI.Accessibility.IUIAutomationElement* sender, winmdroot.UI.Accessibility.UIA_PROPERTY_ID propertyId, winmdroot.System.Variant.VARIANT newValue) 96 public unsafe void HandlePropertyChangedEvent(winmdroot.UI.Accessibility.IUIAutomationElement* sender, winmdroot.UI.Accessibility.UIA_PROPERTY_ID propertyId, winmdroot.System.Variant.VARIANT newValue) 98 ((delegate *unmanaged [Stdcall]<IUIAutomationPropertyChangedEventHandler*,winmdroot.UI.Accessibility.IUIAutomationElement* ,winmdroot.UI.Accessibility.UIA_PROPERTY_ID ,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IUIAutomationPropertyChangedEventHandler*)Unsafe.AsPointer(ref this), sender, propertyId, newValue).ThrowOnFailure(); 128 internal delegate *unmanaged [Stdcall]<IUIAutomationPropertyChangedEventHandler*,winmdroot.UI.Accessibility.IUIAutomationElement* ,winmdroot.UI.Accessibility.UIA_PROPERTY_ID ,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> HandlePropertyChangedEvent_4; 155 unsafe winmdroot.Foundation.HRESULT HandlePropertyChangedEvent(winmdroot.UI.Accessibility.IUIAutomationElement* sender, winmdroot.UI.Accessibility.UIA_PROPERTY_ID propertyId, winmdroot.System.Variant.VARIANT newValue);
_generated\270\Windows.Win32.IUIAutomationProxyFactoryEntry.g.cs (10)
405 private static winmdroot.Foundation.HRESULT SetWinEventsForAutomationEvent(IUIAutomationProxyFactoryEntry* pThis, winmdroot.UI.Accessibility.UIA_EVENT_ID eventId, winmdroot.UI.Accessibility.UIA_PROPERTY_ID propertyId, winmdroot.System.Com.SAFEARRAY* winEvents) 439 public unsafe void SetWinEventsForAutomationEvent(winmdroot.UI.Accessibility.UIA_EVENT_ID eventId, winmdroot.UI.Accessibility.UIA_PROPERTY_ID propertyId, winmdroot.System.Com.SAFEARRAY* winEvents) 441 ((delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryEntry*,winmdroot.UI.Accessibility.UIA_EVENT_ID ,winmdroot.UI.Accessibility.UIA_PROPERTY_ID ,winmdroot.System.Com.SAFEARRAY* ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IUIAutomationProxyFactoryEntry*)Unsafe.AsPointer(ref this), eventId, propertyId, winEvents).ThrowOnFailure(); 447 private static winmdroot.Foundation.HRESULT GetWinEventsForAutomationEvent(IUIAutomationProxyFactoryEntry* pThis, winmdroot.UI.Accessibility.UIA_EVENT_ID eventId, winmdroot.UI.Accessibility.UIA_PROPERTY_ID propertyId, winmdroot.System.Com.SAFEARRAY** winEvents) 479 public unsafe winmdroot.System.Com.SAFEARRAY* GetWinEventsForAutomationEvent(winmdroot.UI.Accessibility.UIA_EVENT_ID eventId, winmdroot.UI.Accessibility.UIA_PROPERTY_ID propertyId) 482 ((delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryEntry*,winmdroot.UI.Accessibility.UIA_EVENT_ID ,winmdroot.UI.Accessibility.UIA_PROPERTY_ID ,winmdroot.System.Com.SAFEARRAY** ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((IUIAutomationProxyFactoryEntry*)Unsafe.AsPointer(ref this), eventId, propertyId, &__retVal).ThrowOnFailure(); 535 internal delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryEntry*,winmdroot.UI.Accessibility.UIA_EVENT_ID ,winmdroot.UI.Accessibility.UIA_PROPERTY_ID ,winmdroot.System.Com.SAFEARRAY* ,winmdroot.Foundation.HRESULT> SetWinEventsForAutomationEvent_15; 537 internal delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryEntry*,winmdroot.UI.Accessibility.UIA_EVENT_ID ,winmdroot.UI.Accessibility.UIA_PROPERTY_ID ,winmdroot.System.Com.SAFEARRAY** ,winmdroot.Foundation.HRESULT> GetWinEventsForAutomationEvent_16; 611 unsafe winmdroot.Foundation.HRESULT SetWinEventsForAutomationEvent(winmdroot.UI.Accessibility.UIA_EVENT_ID eventId, winmdroot.UI.Accessibility.UIA_PROPERTY_ID propertyId, winmdroot.System.Com.SAFEARRAY* winEvents); 614 unsafe winmdroot.Foundation.HRESULT GetWinEventsForAutomationEvent(winmdroot.UI.Accessibility.UIA_EVENT_ID eventId, winmdroot.UI.Accessibility.UIA_PROPERTY_ID propertyId, winmdroot.System.Com.SAFEARRAY** winEvents);
_generated\424\Windows.Win32.PInvoke.UIAutomationCore.dll.g.cs (1)
128 internal static extern unsafe winmdroot.Foundation.HRESULT UiaRaiseAutomationPropertyChangedEvent(winmdroot.UI.Accessibility.IRawElementProviderSimple* pProvider, winmdroot.UI.Accessibility.UIA_PROPERTY_ID id, winmdroot.System.Variant.VARIANT oldValue, winmdroot.System.Variant.VARIANT newValue);
_generated\572\Windows.Win32.UI_Accessibility_IRawElementProviderSimple_Extensions.g.cs (2)
33 /// <inheritdoc cref="winmdroot.UI.Accessibility.IRawElementProviderSimple.Interface.GetPropertyValue(winmdroot.UI.Accessibility.UIA_PROPERTY_ID, winmdroot.System.Variant.VARIANT*)"/> 34 internal static unsafe winmdroot.Foundation.HRESULT GetPropertyValue(this winmdroot.UI.Accessibility.IRawElementProviderSimple.Interface @this, winmdroot.UI.Accessibility.UIA_PROPERTY_ID propertyId, out winmdroot.System.Variant.VARIANT pRetVal)
_generated\581\Windows.Win32.UI_Accessibility_IUIAutomationElement_Extensions.g.cs (8)
33 /// <inheritdoc cref="winmdroot.UI.Accessibility.IUIAutomationElement.Interface.GetCurrentPropertyValue(winmdroot.UI.Accessibility.UIA_PROPERTY_ID, winmdroot.System.Variant.VARIANT*)"/> 34 internal static unsafe winmdroot.Foundation.HRESULT GetCurrentPropertyValue(this winmdroot.UI.Accessibility.IUIAutomationElement.Interface @this, winmdroot.UI.Accessibility.UIA_PROPERTY_ID propertyId, out winmdroot.System.Variant.VARIANT retVal) 43 /// <inheritdoc cref="winmdroot.UI.Accessibility.IUIAutomationElement.Interface.GetCurrentPropertyValueEx(winmdroot.UI.Accessibility.UIA_PROPERTY_ID, winmdroot.Foundation.BOOL, winmdroot.System.Variant.VARIANT*)"/> 44 internal static unsafe winmdroot.Foundation.HRESULT GetCurrentPropertyValueEx(this winmdroot.UI.Accessibility.IUIAutomationElement.Interface @this, winmdroot.UI.Accessibility.UIA_PROPERTY_ID propertyId, winmdroot.Foundation.BOOL ignoreDefaultValue, out winmdroot.System.Variant.VARIANT retVal) 53 /// <inheritdoc cref="winmdroot.UI.Accessibility.IUIAutomationElement.Interface.GetCachedPropertyValue(winmdroot.UI.Accessibility.UIA_PROPERTY_ID, winmdroot.System.Variant.VARIANT*)"/> 54 internal static unsafe winmdroot.Foundation.HRESULT GetCachedPropertyValue(this winmdroot.UI.Accessibility.IUIAutomationElement.Interface @this, winmdroot.UI.Accessibility.UIA_PROPERTY_ID propertyId, out winmdroot.System.Variant.VARIANT retVal) 63 /// <inheritdoc cref="winmdroot.UI.Accessibility.IUIAutomationElement.Interface.GetCachedPropertyValueEx(winmdroot.UI.Accessibility.UIA_PROPERTY_ID, winmdroot.Foundation.BOOL, winmdroot.System.Variant.VARIANT*)"/> 64 internal static unsafe winmdroot.Foundation.HRESULT GetCachedPropertyValueEx(this winmdroot.UI.Accessibility.IUIAutomationElement.Interface @this, winmdroot.UI.Accessibility.UIA_PROPERTY_ID propertyId, winmdroot.Foundation.BOOL ignoreDefaultValue, out winmdroot.System.Variant.VARIANT retVal)
_generated\582\Windows.Win32.UI_Accessibility_IUIAutomationProxyFactoryEntry_Extensions.g.cs (2)
73 /// <inheritdoc cref="winmdroot.UI.Accessibility.IUIAutomationProxyFactoryEntry.Interface.GetWinEventsForAutomationEvent(winmdroot.UI.Accessibility.UIA_EVENT_ID, winmdroot.UI.Accessibility.UIA_PROPERTY_ID, winmdroot.System.Com.SAFEARRAY**)"/> 74 internal static unsafe winmdroot.Foundation.HRESULT GetWinEventsForAutomationEvent(this winmdroot.UI.Accessibility.IUIAutomationProxyFactoryEntry.Interface @this, winmdroot.UI.Accessibility.UIA_EVENT_ID eventId, winmdroot.UI.Accessibility.UIA_PROPERTY_ID propertyId, out winmdroot.System.Com.SAFEARRAY* winEvents)
_generated\584\Windows.Win32.UI_Accessibility_IUIAutomation_Extensions.g.cs (3)
43 /// <inheritdoc cref="winmdroot.UI.Accessibility.IUIAutomation.Interface.AddPropertyChangedEventHandlerNativeArray(winmdroot.UI.Accessibility.IUIAutomationElement*, winmdroot.UI.Accessibility.TreeScope, winmdroot.UI.Accessibility.IUIAutomationCacheRequest*, winmdroot.UI.Accessibility.IUIAutomationPropertyChangedEventHandler*, winmdroot.UI.Accessibility.UIA_PROPERTY_ID*, int)"/> 44 internal static unsafe winmdroot.Foundation.HRESULT AddPropertyChangedEventHandlerNativeArray(this winmdroot.UI.Accessibility.IUIAutomation.Interface @this, winmdroot.UI.Accessibility.IUIAutomationElement* element, winmdroot.UI.Accessibility.TreeScope scope, winmdroot.UI.Accessibility.IUIAutomationCacheRequest* cacheRequest, winmdroot.UI.Accessibility.IUIAutomationPropertyChangedEventHandler* handler, ReadOnlySpan<winmdroot.UI.Accessibility.UIA_PROPERTY_ID> propertyArray) 46 fixed (winmdroot.UI.Accessibility.UIA_PROPERTY_ID* propertyArrayLocal = propertyArray)
Interop\UiaCore\Interop.StubFragmentRoot.cs (1)
123HRESULT IRawElementProviderSimple.Interface.GetPropertyValue(UIA_PROPERTY_ID propertyId, VARIANT* pRetVal)
System\Windows\Forms\Automation\UiaTextRange.cs (1)
335_enclosingElement.GetPropertyValue(UIA_PROPERTY_ID.UIA_BoundingRectanglePropertyId, &result).ThrowOnFailure();
Windows\Win32\UI\Accessibility\UIAHelper.cs (4)
13/// <see cref="IRawElementProviderSimple.GetPropertyValue(IRawElementProviderSimple*, UIA_PROPERTY_ID, VARIANT*)"/> 14/// with <see cref="UIA_PROPERTY_ID.UIA_NativeWindowHandlePropertyId"/> passed. 22/// <see cref="IRawElementProviderSimple.GetPropertyValue(IRawElementProviderSimple*, UIA_PROPERTY_ID, VARIANT*)"/> 23/// with <see cref="UIA_PROPERTY_ID.UIA_NativeWindowHandlePropertyId"/> is expecting a VARIANT with <see cref="VARENUM.VT_I4"/>.