AutomationElement.RuntimeIdProperty フィールド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
要素のランタイム識別子を格納するプロパティを識別します。
public: static initonly System::Windows::Automation::AutomationProperty ^ RuntimeIdProperty;
public static readonly System.Windows.Automation.AutomationProperty RuntimeIdProperty;
staticval mutable RuntimeIdProperty : System.Windows.Automation.AutomationProperty
Public Shared ReadOnly RuntimeIdProperty As AutomationProperty
フィールド値
例
次の例では、 プロパティの現在の値を取得します。
int[] runtimeIdentifier = (int[])
autoElement.GetCurrentPropertyValue(AutomationElement.RuntimeIdProperty);
Dim runtimeIdentifier As Integer() = _
CType(autoElement.GetCurrentPropertyValue(AutomationElement.RuntimeIdProperty), Integer())
注釈
この識別子は、UI オートメーションクライアント アプリケーションで使用されます。 UI オートメーション プロバイダーでは、 でAutomationElementIdentifiers同等の識別子を使用する必要があります。
ランタイム ID プロパティは、デスクトップで一意の の AutomationElement ID を指定します。
プロパティの戻り値は、 型 Int32の配列です。 既定値はありません。
適用対象
こちらもご覧ください
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET