Class DockTabPageAccessibility
The DockTabControlAccessibility class provides information about a dock tab items that can be used by an accessibility application.
Inheritance
Namespace: Syncfusion.Windows.Forms.Tools.Accessibility
Assembly: Syncfusion.Tools.Windows.dll
Syntax
public class DockTabPageAccessibility : AccessibleObject
Constructors
DockTabPageAccessibility(DockTabPage)
Gets the state of the DockTabPageAccessibility which is used by accessibility program.
Declaration
public DockTabPageAccessibility(DockTabPage tabPage)
Parameters
Type | Name | Description |
---|---|---|
DockTabPage | tabPage |
Properties
Bounds
Gets the bounds of the DockTabPage control.
Declaration
public override Rectangle Bounds { get; }
Property Value
Type |
---|
System.Drawing.Rectangle |
Description
Gets the description of the DockTabPage control.
Declaration
public override string Description { get; }
Property Value
Type |
---|
System.String |
Name
Gets the name of the DockTabPage control.
Declaration
public override string Name { get; }
Property Value
Type |
---|
System.String |
Parent
Gets the parent of the DockTabPage control.
Declaration
public override AccessibleObject Parent { get; }
Property Value
Type |
---|
System.Windows.Forms.AccessibleObject |
Role
Gets the accessible role of the DockTabPage control.
Declaration
public override AccessibleRole Role { get; }
Property Value
Type |
---|
System.Windows.Forms.AccessibleRole |
Methods
GetFocused()
Gets the focused control in accessible object
Declaration
public override AccessibleObject GetFocused()
Returns
Type | Description |
---|---|
System.Windows.Forms.AccessibleObject | The AccessibleObject of the DockTabPage |
HitTest(Int32, Int32)
Retrieves the child object at the specified screen coordinates.
Declaration
public override AccessibleObject HitTest(int x, int y)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | x | The horizontal screen coordinate. |
System.Int32 | y | The vertical screen coordinate. |
Returns
Type | Description |
---|---|
System.Windows.Forms.AccessibleObject | A DockTabPageAccessibility that represents the child object at the given screen coordinates. This method returns the calling object if the object itself is at the location specified. Returns null if no object is at the tested location. |