Class ColumnAccessibleObject
Represents a class that provides the accessibility object for the columns.
Inheritance
System.Object
ColumnAccessibleObject
Namespace: Syncfusion.WinForms.DataGrid.Accessibility
Assembly: Syncfusion.SfDataGrid.WinForms.dll
Syntax
public class ColumnAccessibleObject : AccessibleObject
Constructors
ColumnAccessibleObject(SfDataGrid, Int32, Int32, DataRowBase, RowAccessibleObject)
Initializes a new instance of the ColumnAccessibleObject class.
Declaration
public ColumnAccessibleObject(SfDataGrid dataGrid, int rowIndex, int columnIndex, DataRowBase dataRow, RowAccessibleObject rowAccessibilityObject)
Parameters
Type | Name | Description |
---|---|---|
SfDataGrid | dataGrid | The SfDataGrid control. |
System.Int32 | rowIndex | The row index of the cell. |
System.Int32 | columnIndex | The column index. |
DataRowBase | dataRow | The DataRowBase of the cell. |
RowAccessibleObject | rowAccessibilityObject | The row accessibility object. |
Properties
Bounds
Gets the bounds of the column.
Declaration
public override Rectangle Bounds { get; }
Property Value
Type |
---|
System.Drawing.Rectangle |
Description
Gets AccessibleDescription of the column.
Declaration
public override string Description { get; }
Property Value
Type |
---|
System.String |
Name
Gets the AccessibleName of the columns.
Declaration
public override string Name { get; set; }
Property Value
Type |
---|
System.String |
Parent
Gets the parent accessibility object of the column.
Declaration
public override AccessibleObject Parent { get; }
Property Value
Type |
---|
System.Windows.Forms.AccessibleObject |
Role
Gets the AccessibleRole of the column.
Declaration
public override AccessibleRole Role { get; }
Property Value
Type |
---|
System.Windows.Forms.AccessibleRole |
State
Gets the accessible state of the column.
Declaration
public override AccessibleStates State { get; }
Property Value
Type |
---|
System.Windows.Forms.AccessibleStates |
Value
Gets the AccessibleValue of the columns.
Declaration
public override string Value { get; set; }
Property Value
Type |
---|
System.String |
Methods
Navigate(AccessibleNavigation)
Navigates the child at the specific direction.
Declaration
public override AccessibleObject Navigate(AccessibleNavigation navdir)
Parameters
Type | Name | Description |
---|---|---|
System.Windows.Forms.AccessibleNavigation | navdir | The navigation direction. |
Returns
Type | Description |
---|---|
System.Windows.Forms.AccessibleObject | Returns the accessibility object at the given index. |