AutomationInteropProvider.AppendRuntimeId Champ
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Contient une valeur qui, quand elle est retournée comme premier élément du tableau passé à GetRuntimeId() par le fournisseur UI Automation, indique que l’ID est partiel et doit être ajouté à l’ID fourni par le fournisseur de base.
public: int AppendRuntimeId = 3;
public const int AppendRuntimeId = 3;
val mutable AppendRuntimeId : int
Public Const AppendRuntimeId As Integer = 3
Valeur de champ
Value = 3Exemples
L’exemple suivant est une implémentation d’un élément de IRawElementProviderFragment.GetRuntimeId liste.
/// <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
Remarques
Ce champ est généralement utilisé dans l’implémentation des GetRuntimeId éléments d’un fragment qui ne sont pas hébergés directement dans une fenêtre.