AutomationInteropProvider.AppendRuntimeId Поле

Определение

Содержит значение, которое при возвращении в качестве первого элемента массива, передаваемого поставщиком модели автоматизации пользовательского интерфейса в GetRuntimeId(), указывает, что идентификатор является частичным и должен быть добавлен к идентификатору, предоставленному базовым поставщиком.

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

Значение поля

Value = 3
Int32

Примеры

В следующем примере показана реализация IRawElementProviderFragment.GetRuntimeId элемента списка.

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

Комментарии

Это поле обычно используется в реализации GetRuntimeId элементов в фрагменте, которые не размещаются непосредственно в окне.

Применяется к