TreeWalker.GetLastChild 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
检索指定 AutomationElement 的最后一个子元素。
重载
GetLastChild(AutomationElement) |
检索指定 AutomationElement 的最后一个子元素。 |
GetLastChild(AutomationElement, CacheRequest) |
检索指定的 AutomationElement 的最后一个子元素并缓存属性和模式。 |
注解
可以 AutomationElement 具有与当前视图条件不匹配的其他子元素,因此在导航元素树时不会返回。
树的结构 AutomationElement 随着可见用户界面 (UI) 桌面更改中的元素而更改。 不能保证作为最后一个子元素返回的元素将作为后续传递的最后一个子元素返回。
GetLastChild(AutomationElement)
检索指定 AutomationElement 的最后一个子元素。
public:
System::Windows::Automation::AutomationElement ^ GetLastChild(System::Windows::Automation::AutomationElement ^ element);
public System.Windows.Automation.AutomationElement GetLastChild (System.Windows.Automation.AutomationElement element);
member this.GetLastChild : System.Windows.Automation.AutomationElement -> System.Windows.Automation.AutomationElement
Public Function GetLastChild (element As AutomationElement) As AutomationElement
参数
- element
- AutomationElement
从中检索最后一个子级的元素。
返回
作为最后一个子元素的 AutomationElement;如果不存在此类元素,则为空引用(在 Visual Basic 中为 Nothing
)。
注解
可以 AutomationElement 具有与当前视图条件不匹配的其他子元素,因此在导航元素树时不会返回。
树的结构 AutomationElement 随着可见用户界面 (UI) 桌面更改中的元素而更改。 不能保证作为最后一个子元素返回的元素将作为后续传递的最后一个子元素返回。
另请参阅
适用于
GetLastChild(AutomationElement, CacheRequest)
检索指定的 AutomationElement 的最后一个子元素并缓存属性和模式。
public:
System::Windows::Automation::AutomationElement ^ GetLastChild(System::Windows::Automation::AutomationElement ^ element, System::Windows::Automation::CacheRequest ^ request);
public System.Windows.Automation.AutomationElement GetLastChild (System.Windows.Automation.AutomationElement element, System.Windows.Automation.CacheRequest request);
member this.GetLastChild : System.Windows.Automation.AutomationElement * System.Windows.Automation.CacheRequest -> System.Windows.Automation.AutomationElement
Public Function GetLastChild (element As AutomationElement, request As CacheRequest) As AutomationElement
参数
- element
- AutomationElement
从中检索最后一个子级的元素。
- request
- CacheRequest
一个缓存请求对象,它指定返回的 AutomationElement 上要进行缓存的属性和模式。
返回
最后一个子元素;如果不存在此类元素,则为空引用(在 Visual Basic 中为 Nothing
)。
注解
可以 AutomationElement 具有与当前视图条件不匹配的其他子元素,因此在导航元素树时不会返回。
树的结构 AutomationElement 随着可见用户界面 (UI) 桌面更改中的元素而更改。 不能保证作为最后一个子元素返回的元素将作为后续传递的最后一个子元素返回。