IUIAutomationTreeWalker::GetLastChild Method

Retrieves the last child element of the specified UI Automation element.

Syntax

HRESULT GetLastChild(      
    IUIAutomationElement *element,
    IUIAutomationElement **last
);

Parameters

  • element
    [in] The address of the IUIAutomationElement interface of the element for which to retrieve the last child.
  • last
    [out, retval] The address of a variable that receives a pointer to the IUIAutomationElement interface of the last child element.

Return Value

Returns S_OK if successful, or an error value otherwise.

Remarks

An element can have additional child elements that do not match the current view condition and thus are not returned when navigating the element tree.

The structure of the Microsoft UI Automation tree changes as the visible UI elements on the desktop change. It is not guaranteed that an element returned as the last child element will be returned as the last child on subsequent passes.