Class ToolStripExAccessibility
Provides information about the ToolStripEx when accessibility is opened
Inheritance
Namespace: Syncfusion.Windows.Forms.Tools.Accessibility
Assembly: Syncfusion.Tools.Windows.dll
Syntax
public class ToolStripExAccessibility : AccessibleObject
Constructors
ToolStripExAccessibility(ToolStripEx)
Initializes a new instance of the ToolStripExAccessibility class.
Declaration
public ToolStripExAccessibility(ToolStripEx tool)
Parameters
| Type | Name | Description |
|---|---|---|
| ToolStripEx | tool | ToolStripEx instance |
Properties
Bounds
Gets the bounds of ToolStripEx
Declaration
public override Rectangle Bounds { get; }
Property Value
| Type |
|---|
| System.Drawing.Rectangle |
Description
Gets the description of ToolStripEx
Declaration
public override string Description { get; }
Property Value
| Type |
|---|
| System.String |
Name
Gets the name of ToolStripEx
Declaration
public override string Name { get; }
Property Value
| Type |
|---|
| System.String |
Role
Gets the role of ToolStripEx
Declaration
public override AccessibleRole Role { get; }
Property Value
| Type |
|---|
| System.Windows.Forms.AccessibleRole |
State
Gets the state of ToolStripEx
Declaration
public override AccessibleStates State { get; }
Property Value
| Type |
|---|
| System.Windows.Forms.AccessibleStates |
Value
Gets the value of ToolStripEx
Declaration
public override string Value { get; }
Property Value
| Type |
|---|
| System.String |
Methods
GetChild(Int32)
Returns the AccessibleObject of the child at specified index
Declaration
public override AccessibleObject GetChild(int index)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Int32 | index | Child index |
Returns
| Type | Description |
|---|---|
| System.Windows.Forms.AccessibleObject | AccessibleObject of the child at specified index |
GetChildCount()
Returns the child count
Declaration
public override int GetChildCount()
Returns
| Type | Description |
|---|---|
| System.Int32 | Child count |
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 RibbonControlAdvAccessibility 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. |