IRawElementProviderFragment.FragmentRoot 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
조각의 루트 노드를 검색합니다.
public:
property System::Windows::Automation::Provider::IRawElementProviderFragmentRoot ^ FragmentRoot { System::Windows::Automation::Provider::IRawElementProviderFragmentRoot ^ get(); };
public System.Windows.Automation.Provider.IRawElementProviderFragmentRoot FragmentRoot { get; }
member this.FragmentRoot : System.Windows.Automation.Provider.IRawElementProviderFragmentRoot
Public ReadOnly Property FragmentRoot As IRawElementProviderFragmentRoot
속성 값
루트 노드입니다.
예제
다음 코드 예제에서는 목록 상자 내의 목록 항목과 같은 조각의 요소에 대한 구현을 보여줍니다.
/// <summary>
/// Gets the root of this fragment.
/// </summary>
/// <remarks>
/// parentControl is the automation provider for the root fragment. In other cases,
/// the parent element might not be the root.
/// </remarks>
public IRawElementProviderFragmentRoot FragmentRoot
{
get
{
return (IRawElementProviderFragmentRoot)parentControl;
}
}
''' <summary>
''' Gets the root of this fragment.
''' </summary>
''' <remarks>
''' parentControl is the automation provider for the root fragment. In other cases,
''' the parent element might not be the root.
''' </remarks>
Public ReadOnly Property FragmentRoot() As IRawElementProviderFragmentRoot _
Implements IRawElementProviderFragment.FragmentRoot
Get
Return DirectCast(parentControl, IRawElementProviderFragmentRoot)
End Get
End Property
설명
구현하는 공급자는 IRawElementProviderFragmentRoot 자신을 반환해야 합니다.