IRawElementProviderFragment.FragmentRoot Właściwość
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Pobiera węzeł główny fragmentu.
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
Wartość właściwości
Węzeł główny.
Przykłady
Poniższy przykład kodu przedstawia implementację elementu w fragmentze, takim jak element listy w polu listy.
/// <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
Uwagi
Dostawca, który implementuje IRawElementProviderFragmentRoot , powinien zwrócić się sam.