AutomationInteropProvider.AppendRuntimeId Campo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Contiene un valore che, se restituito come primo elemento della matrice passata dal provider di automazione interfaccia utente a GetRuntimeId(), indica che l'ID è parziale e deve essere aggiunto all'ID fornito dal provider di base.
public: int AppendRuntimeId = 3;
public const int AppendRuntimeId = 3;
val mutable AppendRuntimeId : int
Public Const AppendRuntimeId As Integer = 3
Valore del campo
Value = 3Esempio
L'esempio seguente è un'implementazione di per una voce di IRawElementProviderFragment.GetRuntimeId elenco.
/// <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
Commenti
Questo campo viene in genere usato nell'implementazione di GetRuntimeId per gli elementi in un frammento che non sono ospitati direttamente in una finestra.