AccessibleObject::IAccessible::accSelect Method (Int32, Object^)
This API supports the product infrastructure and is not intended to be used directly from your code.
Modifies the selection or moves the keyboard focus of the accessible object. For a description of this member, see IAccessible::accSelect.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
private: virtual void accSelect( int flagsSelect, Object^ childID ) sealed = IAccessible::accSelect
Parameters
- flagsSelect
-
Type:
System::Int32
A bitwise combination of the AccessibleSelection values.
- childID
-
Type:
System::Object^
The ID number of the accessible object on which to perform the selection. This parameter is 0 to select the object, or a child ID to select one of the object's child objects.
Implements
IAccessible::accSelect(Int32, Object^)The following describes which AccessibleSelection values to specify when calling Select to perform complex selection operations.
Operation | Flag Combination |
|---|---|
To simulate a click | |
To select a target item by simulating CTRL+click | |
To cancel selection of a target item by simulating CTRL+click | |
To simulate SHIFT+click | |
To select a range of objects and put focus on the last object | Specify TakeFocus on the starting object to set the selection anchor. Then call Select again and specify TakeFocus OR ExtendSelection on the last object. |
To deselect all objects | Specify TakeSelection on any object. This flag deselects all selected objects except the one just selected. Then call Select again and specify RemoveSelection on the same object. |
This member is an explicit interface member implementation. It can be used only when the AccessibleObject instance is cast to an IAccessible interface.
Available since 1.1