Share via


Implementing the UI Automation GridItem Control Pattern

This topic introduces guidelines and conventions for implementing IGridItemProvider, including information about properties. Links to additional references are listed at the end of the topic.

The GridItem control pattern is used to support individual child controls of containers that implement IGridProvider. For examples of controls that implement this control pattern, see Control Pattern Mapping for UI Automation Clients.

This topic contains the following sections.

  • Implementation Guidelines and Conventions
  • Required Members for IGridItemProvider
  • Related Topics

Implementation Guidelines and Conventions

When implementing the GridItem control pattern, note the following guidelines and conventions:

  • Grid coordinates are zero-based with the upper left cell having coordinates (0, 0).
  • Merged cells will report their IGridItemProvider::Row and IGridItemProvider::Column properties based on their underlying anchor cell as defined by the Microsoft UI Automation provider. Typically, it will be the topmost and leftmost row or column.
  • IGridProvider does not provide for active manipulation of the grid such as merging or splitting cells.
  • Controls that implement IGridProvider can typically be traversed (that is, a UI Automation client can move to adjacent controls) by using the keyboard.

Required Members for IGridItemProvider

The following properties are required for implementing the IGridItemProvider interface.

Required members Member type Notes
IGridItemProvider::Row Property None
IGridItemProvider::Column Property None
IGridItemProvider::RowSpan Property None
IGridItemProvider::ColumnSpan Property None
IGridItemProvider::ContainingGrid Property None

This control pattern has no associated methods or events.