Compartir a través de


AutomationInteropProvider.AppendRuntimeId Campo

Definición

Contiene un valor que, cuando se devuelve como el primer elemento de la matriz pasada por el proveedor de Automatización de la interfaz de usuario para GetRuntimeId(), indica que el identificador es parcial y se debe anexar al identificador proporcionado por el proveedor base.

public: int AppendRuntimeId = 3;
public const int AppendRuntimeId = 3;
val mutable AppendRuntimeId : int
Public Const AppendRuntimeId As Integer  = 3

Valor de campo

Value = 3
Int32

Ejemplos

El ejemplo siguiente es una implementación de para un elemento de IRawElementProviderFragment.GetRuntimeId lista.

/// <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

Comentarios

Este campo se usa normalmente en la implementación de para los elementos de GetRuntimeId un fragmento que no se hospedan directamente en una ventana.

Se aplica a