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 AutomationProperties.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.
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 AutomationProperties.GetFlowsTo is called.
The base implementation for AutomationPeer returns null.