Class GroupViewControlAccessibleObject
ControlAccessibleObject derived class that implements the Accessibility object for the GroupView control.
Inheritance
Namespace: Syncfusion.Windows.Forms.Tools
Assembly: Syncfusion.Shared.Base.dll
Syntax
public class GroupViewControlAccessibleObject : Control.ControlAccessibleObject
Constructors
GroupViewControlAccessibleObject(GroupView)
Initializes a new instance of the GroupViewControlAccessibleObject class.
Declaration
public GroupViewControlAccessibleObject(GroupView gvctrl)
Parameters
| Type | Name | Description |
|---|---|---|
| GroupView | gvctrl |
Fields
ctrlGroupView
Holds a reference to the GroupView control associated with this accessibility object.
Declaration
protected GroupView ctrlGroupView
Field Value
| Type |
|---|
| GroupView |
Properties
Bounds
Gets the screen bounds of the GroupView control.
Declaration
public override Rectangle Bounds { get; }
Property Value
| Type |
|---|
| System.Drawing.Rectangle |
Description
Gets the accessible description of the GroupView control.
Declaration
public override string Description { get; }
Property Value
| Type |
|---|
| System.String |
Help
Gets the help text associated with the GroupView control.
Declaration
public override string Help { get; }
Property Value
| Type |
|---|
| System.String |
Name
Gets the accessible name of the GroupView control.
Declaration
public override string Name { get; }
Property Value
| Type |
|---|
| System.String |
Parent
Gets the accessible parent of the GroupView control.
Declaration
public override AccessibleObject Parent { get; }
Property Value
| Type |
|---|
| System.Windows.Forms.AccessibleObject |
Role
Gets the accessible role of the GroupView control.
Declaration
public override AccessibleRole Role { get; }
Property Value
| Type |
|---|
| System.Windows.Forms.AccessibleRole |
State
Gets the accessible state of the GroupView control.
Declaration
public override AccessibleStates State { get; }
Property Value
| Type |
|---|
| System.Windows.Forms.AccessibleStates |
Value
Gets or sets the accessible value of the GroupView control.
Declaration
public override string Value { get; set; }
Property Value
| Type |
|---|
| System.String |
Methods
GetChild(Int32)
Returns the accessible object for the child item at the specified index.
Declaration
public override AccessibleObject GetChild(int index)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Int32 | index | The index of the child item. |
Returns
| Type |
|---|
| System.Windows.Forms.AccessibleObject |
GetChildCount()
Returns the number of accessible child items in the GroupView.
Declaration
public override int GetChildCount()
Returns
| Type |
|---|
| System.Int32 |
GetFocused()
Returns the currently focused accessible object.
Declaration
public override AccessibleObject GetFocused()
Returns
| Type |
|---|
| System.Windows.Forms.AccessibleObject |
GetSelected()
Returns the currently selected accessible object.
Declaration
public override AccessibleObject GetSelected()
Returns
| Type |
|---|
| System.Windows.Forms.AccessibleObject |
HitTest(Int32, Int32)
Performs hit testing to determine which accessible object is under the specified screen coordinates.
Declaration
public override AccessibleObject HitTest(int x, int y)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Int32 | x | The X-coordinate in screen space. |
| System.Int32 | y | The Y-coordinate in screen space. |
Returns
| Type |
|---|
| System.Windows.Forms.AccessibleObject |
Navigate(AccessibleNavigation)
Navigates from the currently selected item in the specified direction.
Declaration
public override AccessibleObject Navigate(AccessibleNavigation navdir)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Windows.Forms.AccessibleNavigation | navdir | The navigation direction. |
Returns
| Type |
|---|
| System.Windows.Forms.AccessibleObject |
NavigateFromChild(GroupViewItemAccessibleObject, AccessibleNavigation)
Navigates from a child item in the specified direction.
Declaration
public AccessibleObject NavigateFromChild(GroupViewItemAccessibleObject child, AccessibleNavigation navdir)
Parameters
| Type | Name | Description |
|---|---|---|
| GroupViewItemAccessibleObject | child | The child accessible object to navigate from. |
| System.Windows.Forms.AccessibleNavigation | navdir | The navigation direction. |
Returns
| Type |
|---|
| System.Windows.Forms.AccessibleObject |
SelectChild(GroupViewItemAccessibleObject, AccessibleSelection)
Selects a child item based on the specified selection behavior.
Declaration
public void SelectChild(GroupViewItemAccessibleObject child, AccessibleSelection selection)
Parameters
| Type | Name | Description |
|---|---|---|
| GroupViewItemAccessibleObject | child | The child accessible object to select. |
| System.Windows.Forms.AccessibleSelection | selection | The selection behavior. |