10 references to UIA_GroupControlTypeId
System.Windows.Forms (3)
System\Windows\Forms\Accessibility\AccessibleRoleControlTypeMap.cs (1)
42
{ AccessibleRole.Grouping, UIA_CONTROLTYPE_ID.
UIA_GroupControlTypeId
},
System\Windows\Forms\Controls\ListView\ListViewGroup.ListViewGroupAccessibleObject.cs (1)
185
UIA_PROPERTY_ID.UIA_ControlTypePropertyId => (VARIANT)(int)UIA_CONTROLTYPE_ID.
UIA_GroupControlTypeId
,
System\Windows\Forms\ErrorProvider\ErrorProvider.ErrorWindow.ErrorWindowAccessibleObject.cs (1)
61
UIA_PROPERTY_ID.UIA_ControlTypePropertyId => (VARIANT)(int)UIA_CONTROLTYPE_ID.
UIA_GroupControlTypeId
,
System.Windows.Forms.Tests (7)
System\Windows\Forms\AccessibleObjects\ErrorProvider.ErrorWindow.ErrorWindowAccessibleObjectTests.cs (1)
64
Assert.Equal(UIA_CONTROLTYPE_ID.
UIA_GroupControlTypeId
, (UIA_CONTROLTYPE_ID)(int)accessibleObject.GetPropertyValue(UIA_PROPERTY_ID.UIA_ControlTypePropertyId));
System\Windows\Forms\AccessibleObjects\ErrorProviderAccessibleObjectTests.cs (1)
89
Assert.Equal(UIA_CONTROLTYPE_ID.
UIA_GroupControlTypeId
, (UIA_CONTROLTYPE_ID)(int)actual);
System\Windows\Forms\AccessibleObjects\GroupBoxAccessibleObjectTests.cs (1)
91
Assert.Equal(UIA_CONTROLTYPE_ID.
UIA_GroupControlTypeId
, (UIA_CONTROLTYPE_ID)(int)actual);
System\Windows\Forms\AccessibleObjects\ListViewGroup.ListViewGroupAccessibleObjectTests.cs (3)
69
UIA_CONTROLTYPE_ID expected = UIA_CONTROLTYPE_ID.
UIA_GroupControlTypeId
;
101
Assert.Equal(UIA_CONTROLTYPE_ID.
UIA_GroupControlTypeId
, (UIA_CONTROLTYPE_ID)(int)groupAccessibleObject.GetPropertyValue(UIA_PROPERTY_ID.UIA_ControlTypePropertyId));
102
Assert.Equal(UIA_CONTROLTYPE_ID.
UIA_GroupControlTypeId
, (UIA_CONTROLTYPE_ID)(int)defaultGroupAccessibleObject.GetPropertyValue(UIA_PROPERTY_ID.UIA_ControlTypePropertyId));
System\Windows\Forms\AccessibleRoleControlTypeMapTests.cs (1)
70
yield return new object[] { AccessibleRole.Grouping, UIA_CONTROLTYPE_ID.
UIA_GroupControlTypeId
};