AutomationPeer.GetFlowsFromCore Method

Definition

Provides the peer's behavior when a Microsoft UI Automation client calls AutomationProperties.GetFlowsFrom or an equivalent Microsoft UI Automation client API.

protected:
 virtual IIterable<AutomationPeer ^> ^ GetFlowsFromCore() = GetFlowsFromCore;
IIterable<AutomationPeer> GetFlowsFromCore();
protected virtual IEnumerable<AutomationPeer> GetFlowsFromCore();
function getFlowsFromCore()
Protected Overridable Function GetFlowsFromCore () As IEnumerable(Of AutomationPeer)

Returns

A list of automation elements that suggests the reading order before 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, GetFlowsFromCore is invoked any time that AutomationProperties.GetFlowsFrom is called.

The base implementation for AutomationPeer returns null.

Applies to