TablePatternIdentifiers TablePatternIdentifiers TablePatternIdentifiers TablePatternIdentifiers Class

Definition

Contains values used as identifiers by ITableProvider.

public : sealed class TablePatternIdentifiers : ITablePatternIdentifierspublic sealed class TablePatternIdentifiers : ITablePatternIdentifiersPublic NotInheritable Class TablePatternIdentifiers Implements ITablePatternIdentifiers// 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 TablePatternIdentifiers 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 ITableProvider 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. ITableProvider is also presented as a Component Object Model (COM) interface.

Properties

ColumnHeadersProperty ColumnHeadersProperty ColumnHeadersProperty ColumnHeadersProperty

Identifies the automation property that is accessed by the GetColumnHeaders method.

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

RowHeadersProperty RowHeadersProperty RowHeadersProperty RowHeadersProperty

Identifies the automation property that is accessed by the GetRowHeaders method.

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

RowOrColumnMajorProperty RowOrColumnMajorProperty RowOrColumnMajorProperty RowOrColumnMajorProperty

Identifies the RowOrColumnMajor automation property.

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

See Also