GridPatternIdentifiers GridPatternIdentifiers GridPatternIdentifiers GridPatternIdentifiers Class

Definition

Contains values used as identifiers by IGridProvider.

public : sealed class GridPatternIdentifiers : IGridPatternIdentifierspublic sealed class GridPatternIdentifiers : IGridPatternIdentifiersPublic NotInheritable Class GridPatternIdentifiers Implements IGridPatternIdentifiers// This API is not available in Javascript.
Attributes
Windows 10 requirements
Device family
Windows 10 (introduced v10.0.10240.0)
API contract
Windows.Foundation.UniversalApiContract (introduced v1)

Remarks

Classes such as GridPatternIdentifiers are the identifiers for the Windows Runtime implementation of a common provider pattern for Microsoft UI Automation. You might use these identifiers if you are implementing a Windows Runtime custom automation peer that reports support for IGridProvider in its GetPattern implementation. These identifiers are needed for the RaisePropertyChangedEvent calls that you make from control code that references your own peer, or for FindItemByProperty in an items container peer.

This same pattern is usually exposed to clients in a different way, depending on which technology they use to implement the client and examine the Microsoft UI Automation tree. IGridProvider is also presented as a Component Object Model (COM) interface.

Properties

ColumnCountProperty ColumnCountProperty ColumnCountProperty ColumnCountProperty

Identifies the ColumnCount automation property.

public : static AutomationProperty ColumnCountProperty { get; }public static AutomationProperty ColumnCountProperty { get; }Public Static ReadOnly Property ColumnCountProperty As AutomationProperty// This API is not available in Javascript.

RowCountProperty RowCountProperty RowCountProperty RowCountProperty

Identifies the RowCount automation property.

public : static AutomationProperty RowCountProperty { get; }public static AutomationProperty RowCountProperty { get; }Public Static ReadOnly Property RowCountProperty As AutomationProperty// This API is not available in Javascript.

See Also