IRawElementProviderFragment.GetRuntimeId メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
要素のランタイム識別子を取得します。
public:
cli::array <int> ^ GetRuntimeId();
public int[] GetRuntimeId ();
abstract member GetRuntimeId : unit -> int[]
Public Function GetRuntimeId () As Integer()
戻り値
Int32[]
要素の一意のランタイム識別子。
例
次のコード例は、リスト ボックス内の項目など、フラグメント内の要素によるこのメソッドの実装を示しています。 項目はフラグメントのこのインスタンス内に独自の一意識別子を持ち AppendRuntimeId 、値によって、メソッドによって返される識別子が UI オートメーション ツリーで一意であることが保証されます。
/// <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
注釈
実装は、ウィンドウ ハンドルに対応する要素に対して を返 null
す必要があります。 他の要素は、 を含む AppendRuntimeId配列を返し、その後にフラグメント内で一意の値を返す必要があります。
フラグメント内で一意性を確保するのはプロバイダーの責任です。たとえば、リスト内の各項目には個別に番号を付ける必要があります。 UI オートメーション エンジンは、値を変換 AppendRuntimeId することで、識別子がすべてのインスタンス間で一意であることを確認します。
適用対象
こちらもご覧ください
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET