ITableProvider Interface
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Exposes methods and properties to support access by a UI automation client to controls that act as containers for a collection of child elements. The children of this element must implement ITableItemProvider and be organized in a two-dimensional logical coordinate system that can be traversed (a UI automation client can move to adjacent controls, which are headers or cells of the table) by using the keyboard.
Assembly: System.Windows (in System.Windows.dll)
The ITableProvider type exposes the following members.
| Name | Description | |
|---|---|---|
![]() | ColumnCount | Gets the total number of columns in a grid. (Inherited from IGridProvider.) |
![]() | RowCount | Gets the total number of rows in a grid. (Inherited from IGridProvider.) |
![]() | RowOrColumnMajor | Gets the primary direction of traversal for the table. |
| Name | Description | |
|---|---|---|
![]() | GetColumnHeaders | Returns a collection of UI Automation providers that represents all the column headers in a table. |
![]() | GetItem | Retrieves the UI automation provider for the specified cell. (Inherited from IGridProvider.) |
![]() | GetRowHeaders | Returns a collection of UI Automation providers that represents all row headers in the table. |

