AutomationElement.GetRuntimeId 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
擷取指派給使用者介面的唯一識別碼, (UI) 專案。
public:
cli::array <int> ^ GetRuntimeId();
public int[] GetRuntimeId ();
member this.GetRuntimeId : unit -> int[]
Public Function GetRuntimeId () As Integer()
傳回
Int32[]
代表執行階段識別碼的整數陣列。
例外狀況
AutomationElement 的 UI 不再存在。
範例
下列範例示範如何擷取 的 AutomationElement 執行時間識別碼。
// element is an AutomationElement.
int[] id = element.GetRuntimeId();
' element is an AutomationElement.
Dim id As Integer() = element.GetRuntimeId()
備註
識別碼只保證對產生該識別碼的桌面 UI 是唯一的。 識別碼可隨著時間重複使用。
執行時間識別碼的格式在未來版本中可能會變更。 傳回的識別碼應該視為不透明值,並僅用於比較;例如,判斷 是否 AutomationElement 在快取中。