Class TabSplitterContainerAccessibleObject
Represents the class that provides the accessibility object for the TabSplitterContainer
Inheritance
Namespace: Syncfusion.Windows.Forms.Tools.Accessibility
Assembly: Syncfusion.Tools.Windows.dll
Syntax
public class TabSplitterContainerAccessibleObject : Control.ControlAccessibleObject
Constructors
TabSplitterContainerAccessibleObject(TabSplitterContainer)
Initializes a new instance of the TabSplitterContainerAccessibleObject class.
Declaration
public TabSplitterContainerAccessibleObject(TabSplitterContainer tabSplitterContainer)
Parameters
| Type | Name | Description |
|---|---|---|
| TabSplitterContainer | tabSplitterContainer | The TabSplitterContainer which needs to create the accessibility object |
Properties
Bounds
Gets the bounds of the TabSplitterContainer control.
Declaration
public override Rectangle Bounds { get; }
Property Value
| Type |
|---|
| System.Drawing.Rectangle |
Description
Gets the AccessibleDescription of the TabSplitterContainer control.
Declaration
public override string Description { get; }
Property Value
| Type |
|---|
| System.String |
Name
Gets the AccessibleName of the TabSplitterContainer control.
Declaration
public override string Name { get; }
Property Value
| Type |
|---|
| System.String |
Parent
Gets the accessibility object of the TabSplitterContainer parent.
Declaration
public override AccessibleObject Parent { get; }
Property Value
| Type |
|---|
| System.Windows.Forms.AccessibleObject |
Role
Gets the AccessibleRole of the TabSplitterContainer control.
Declaration
public override AccessibleRole Role { get; }
Property Value
| Type |
|---|
| System.Windows.Forms.AccessibleRole |
State
Gets the state for the TabSplitterContainer.
Declaration
public override AccessibleStates State { get; }
Property Value
| Type |
|---|
| System.Windows.Forms.AccessibleStates |
Value
Gets the text value of the TabSplitterContainer.
Declaration
public override string Value { get; set; }
Property Value
| Type |
|---|
| System.String |
Methods
GetChild(Int32)
Retrieves the accessible child corresponding to the index.
Declaration
public override AccessibleObject GetChild(int index)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Int32 | index | Index |
Returns
| Type | Description |
|---|---|
| System.Windows.Forms.AccessibleObject | Child specified to the index |
GetChildCount()
Retrieves the number of children in the accessible object.
Declaration
public override int GetChildCount()
Returns
| Type | Description |
|---|---|
| System.Int32 | Number of Child |
GetFocused()
Returns whether the TabSplitterContainer is focused or not.
Declaration
public override AccessibleObject GetFocused()
Returns
| Type | Description |
|---|---|
| System.Windows.Forms.AccessibleObject | Indicates whether its focused. |
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 TabSplitterContainerAccessibleObject 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. |