cachedFlowsTo property
IUIAutomationElementArray?
get
cachedFlowsTo
Retrieves a cached array of elements that indicate the reading order after the current element.
To learn more, see learn.microsoft.com/windows/win32/api/uiautomationclient/nf-uiautomationclient-iuiautomationelement-get_cachedflowsto.
Implementation
IUIAutomationElementArray? get cachedFlowsTo {
final retVal = adaptiveCalloc<VTablePointer>();
final hr$ = HRESULT(_get_CachedFlowsToFn(ptr, retVal));
if (hr$.isError) {
free(retVal);
throw WindowsException(hr$);
}
final result$ = retVal.value;
free(retVal);
if (result$.isNull) return null;
return .new(result$);
}