AutomationPeer.GetFlowsFromCore 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 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.
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, GetFlowsFromCore is invoked any time that GetFlowsFrom is called.
The base implementation for AutomationPeer returns null.