Show / Hide Table of Contents

Interface IGridItemProvider

Exposes methods and properties to support access by a UI automation client to individual child controls of containers that implement IGridProvider.

Namespace: System.Windows.Automation.Provider
Assembly: OpenSilver.dll
Syntax
public interface IGridItemProvider

Properties

| Improve this Doc View Source

Column

Gets the ordinal number of the column that contains the cell or item.

Declaration
int Column { get; }
Property Value
Type Description
System.Int32

A zero-based ordinal number that identifies the column that contains the cell or item.

| Improve this Doc View Source

ColumnSpan

Gets the number of columns that are spanned by a cell or item.

Declaration
int ColumnSpan { get; }
Property Value
Type Description
System.Int32

The number of columns.

| Improve this Doc View Source

ContainingGrid

Gets a UI automation provider that implements IGridProvider and that represents the container of the cell or item.

Declaration
IRawElementProviderSimple ContainingGrid { get; }
Property Value
Type Description
IRawElementProviderSimple

A UI automation provider that implements the Grid control pattern and that represents the cell or item container.

| Improve this Doc View Source

Row

Gets the ordinal number of the row that contains the cell or item.

Declaration
int Row { get; }
Property Value
Type Description
System.Int32

A zero-based ordinal number that identifies the row that contains the cell or item.

| Improve this Doc View Source

RowSpan

Gets the number of rows spanned by a cell or item.

Declaration
int RowSpan { get; }
Property Value
Type Description
System.Int32

The number of rows.

  • Improve this Doc
  • View Source