AutomationInteropProvider.AppendRuntimeId Pole
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.
Zawiera wartość, która po powrocie jako pierwszy element tablicy przekazanej przez dostawcę automatyzacja interfejsu użytkownika do GetRuntimeId(), wskazuje, że identyfikator jest częściowy i powinien zostać dołączony do identyfikatora dostarczonego przez dostawcę podstawowego.
public: int AppendRuntimeId = 3;
public const int AppendRuntimeId = 3;
val mutable AppendRuntimeId : int
Public Const AppendRuntimeId As Integer = 3
Wartość pola
Value = 3Przykłady
Poniższy przykład to implementacja IRawElementProviderFragment.GetRuntimeId elementu listy.
/// <summary>
/// Gets the runtime identifier of the UI Automation element.
/// </summary>
/// <remarks>
/// myID is a unique identifier for the item within this instance of the list.
/// </remarks>
public int[] GetRuntimeId()
{
return new int[] { AutomationInteropProvider.AppendRuntimeId, myID };
}
''' <summary>
''' Gets the runtime identifier of the UI Automation element.
''' </summary>
''' <remarks>
''' myID is a unique identifier for the item within this instance of the list.
''' </remarks>
Public Function GetRuntimeId() As Integer() _
Implements IRawElementProviderFragment.GetRuntimeId
Return New Integer() {AutomationInteropProvider.AppendRuntimeId, myID}
End Function 'GetRuntimeId
Uwagi
To pole jest zwykle używane w implementacji GetRuntimeId elementów w fragmentcie, które nie są bezpośrednio hostowane w oknie.