Interface ITableItemPattern
The methods and properties used to retrieve table column or row header items.
public interface ITableItemPattern
Properties
ColumnHeaderItems
The column headers associated with a table item or cell. Note: This method is only supported when you enable the legacy UIA Pro Add-in.
[Obsolete("Use ColumnHeaderItemsAsUIObjects instead.")]
List<object> ColumnHeaderItems { get; }
Property Value
ColumnHeaderItemsAsUIObjects
The column headers associated with a table item or cell. Note: This method is not supported when you enable the legacy UIA Pro Add-in.
List<IUiObject> ColumnHeaderItemsAsUIObjects { get; }
Property Value
RowHeaderItems
The row headers associated with a table item or cell. Note: This method is only supported when you enable the legacy UIA Pro Add-in.
[Obsolete("Use RowHeaderItemsAsUIObjects instead.")]
List<object> RowHeaderItems { get; }
Property Value
RowHeaderItemsAsUIObjects
The row headers associated with a table item or cell. Note: This method is not supported when you enable the legacy UIA Pro Add-in.
List<IUiObject> RowHeaderItemsAsUIObjects { get; }