Class NumericTextBoxAccessibility
Represents a class that used to specify the accessibility object of the SfNumericTextBox control.
Inheritance
Namespace: Syncfusion.WinForms.Input.Accessibility
Assembly: Syncfusion.SfInput.WinForms.dll
Syntax
public class NumericTextBoxAccessibility : Control.ControlAccessibleObject
Constructors
NumericTextBoxAccessibility(SfNumericTextBox)
Initializes a new instance of the NumericTextBoxAccessibility class.
Declaration
public NumericTextBoxAccessibility(SfNumericTextBox owner)
Parameters
| Type | Name | Description |
|---|---|---|
| SfNumericTextBox | owner | SfNumericTextBox which needs to be used for accessibility application. |
Properties
Bounds
Gets the Bounds of the SfNumericTextBox which is used by accessibility program.
Declaration
public override Rectangle Bounds { get; }
Property Value
| Type |
|---|
| System.Drawing.Rectangle |
Description
Gets the description of the SfNumericTextBox control used by the accessibility program.
Declaration
public override string Description { get; }
Property Value
| Type |
|---|
| System.String |
Help
Gets the description of the SfNumericTextBox control.
Declaration
public override string Help { get; }
Property Value
| Type |
|---|
| System.String |
Name
Gets the name of the SfNumericTextBox which is used by accessibility program.
Declaration
public override string Name { get; }
Property Value
| Type |
|---|
| System.String |
Parent
Gets the parent of the SfNumericTextBox which is used by accessibility program.
Declaration
public override AccessibleObject Parent { get; }
Property Value
| Type |
|---|
| System.Windows.Forms.AccessibleObject |
Role
Gets the accessible role of the SfNumericTextBox control.
Declaration
public override AccessibleRole Role { get; }
Property Value
| Type |
|---|
| System.Windows.Forms.AccessibleRole |
State
Gets the state of the SfNumericTextBox which is used by accessibility program.
Declaration
public override AccessibleStates State { get; }
Property Value
| Type |
|---|
| System.Windows.Forms.AccessibleStates |
Value
Gets or sets the text of the SfNumericTextBox.
Declaration
public override string Value { get; set; }
Property Value
| Type |
|---|
| System.String |
Methods
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 coordinates |
| System.Int32 | y | The vertical screen coordinates |
Returns
| Type | Description |
|---|---|
| System.Windows.Forms.AccessibleObject | An System.Windows.Forms.AccessibleObject 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. |