Class CalendarAccessibility
The CalendarAccessibility class provides information about a control that can be used by an accessibility application.
Inheritance
Namespace: Syncfusion.WinForms.Input.Accessibility
Assembly: Syncfusion.SfInput.WinForms.dll
Syntax
public class CalendarAccessibility : Control.ControlAccessibleObject
Constructors
CalendarAccessibility(SfCalendar)
Initializes a new instance of the CalendarAccessibility class.
Declaration
public CalendarAccessibility(SfCalendar calendar)
Parameters
Type | Name | Description |
---|---|---|
SfCalendar | calendar | SfCalendar control. |
Properties
Bounds
Gets the bounds of the SfCalendar control.
Declaration
public override Rectangle Bounds { get; }
Property Value
Type |
---|
System.Drawing.Rectangle |
Description
Gets the Description of the SfCalendar control.
Declaration
public override string Description { get; }
Property Value
Type |
---|
System.String |
Name
Gets the name of the control.
Declaration
public override string Name { get; }
Property Value
Type |
---|
System.String |
Parent
Gets the parent control of the accessible object.
Declaration
public override AccessibleObject Parent { get; }
Property Value
Type |
---|
System.Windows.Forms.AccessibleObject |
Role
Gets the accessible role of the control.
Declaration
public override AccessibleRole Role { get; }
Property Value
Type |
---|
System.Windows.Forms.AccessibleRole |
State
Gets the state of the SfCalendar which is used by accessibility program.
Declaration
public override AccessibleStates State { get; }
Property Value
Type |
---|
System.Windows.Forms.AccessibleStates |
Value
Gets the Value of the SfCalendar.
Declaration
public override string Value { get; }
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 | Horizontal screen coordinate. |
System.Int32 | y | Vertical screen coordinate. |
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./// |