AutomationPeer.GetFlowsToCore Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Provides the peer's behavior when a Microsoft UI Automation client calls GetFlowsTo or an equivalent Microsoft UI Automation client API.
protected:
virtual IIterable<AutomationPeer ^> ^ GetFlowsToCore() = GetFlowsToCore;
IIterable<AutomationPeer> GetFlowsToCore();
protected virtual IEnumerable<AutomationPeer> GetFlowsToCore();
function getFlowsToCore()
Protected Overridable Function GetFlowsToCore () As IEnumerable(Of AutomationPeer)
Returns
A list of automation elements that suggests the reading order after the current automation element.
Windows requirements
Device family |
Windows 10 Anniversary Edition (introduced in 10.0.14393.0)
|
API contract |
Windows.Foundation.UniversalApiContract (introduced in v3.0)
|
Remarks
The "Core" methods are the standard implementations that perform the default action of an associated UI Automation client-callable method. You can override any of the "Core" methods to return alternative values in a custom automation peer. In this case, GetFlowsToCore is invoked any time that GetFlowsTo is called.
The base implementation for AutomationPeer returns null.