Partager via


AutomationInteropProvider.AppendRuntimeId Champ

Définition

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 = 3
Int32

Exemples

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.

S’applique à