Class TabPageAdvAccessibleObject
Class to access the Tabs in TabControlAdv.
Inheritance
System.Object
TabPageAdvAccessibleObject
Namespace: Syncfusion.Windows.Forms.Tools
Assembly: Syncfusion.Tools.Windows.dll
Syntax
public class TabPageAdvAccessibleObject : AccessibleObject
Constructors
TabPageAdvAccessibleObject(TabPageAdv)
Constructor for TabAccessibleObject class.
Declaration
public TabPageAdvAccessibleObject(TabPageAdv tabPage)
Parameters
| Type | Name | Description |
|---|---|---|
| TabPageAdv | tabPage |
Properties
Bounds
Gets the bounds of the Tabs.
Declaration
public override Rectangle Bounds { get; }
Property Value
| Type |
|---|
| System.Drawing.Rectangle |
Description
Gets Description of the TabControlAdv which is used by Accessibility program
Declaration
public override string Description { get; }
Property Value
| Type |
|---|
| System.String |
Name
Gets the Name of the Tabs.
Declaration
public override string Name { get; }
Property Value
| Type |
|---|
| System.String |
Parent
Gets the parent of the Tabs.
Declaration
public override AccessibleObject Parent { get; }
Property Value
| Type |
|---|
| System.Windows.Forms.AccessibleObject |
Role
Gets Role of the Tabs.
Declaration
public override AccessibleRole Role { get; }
Property Value
| Type |
|---|
| System.Windows.Forms.AccessibleRole |
Methods
GetFocused()
Returns whether the control is Focused or not
Declaration
public override AccessibleObject GetFocused()
Returns
| Type | Description |
|---|---|
| System.Windows.Forms.AccessibleObject | The AccessibleObject of the TabPageAdv. |
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 | An TabControlAdvAccessibleObject 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. |