AutomationElement.ItemTypeProperty フィールド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
ItemType プロパティを識別します。
public: static initonly System::Windows::Automation::AutomationProperty ^ ItemTypeProperty;
public static readonly System.Windows.Automation.AutomationProperty ItemTypeProperty;
staticval mutable ItemTypeProperty : System.Windows.Automation.AutomationProperty
Public Shared ReadOnly ItemTypeProperty As AutomationProperty
フィールド値
例
次の例では、 プロパティの現在の値を取得します。 要素に指定されていない場合は、既定値が返されます。
string itemType =
autoElement.GetCurrentPropertyValue(AutomationElement.ItemTypeProperty) as string;
Dim itemType As String = _
CStr(autoElement.GetCurrentPropertyValue(AutomationElement.ItemTypeProperty))
次の例では、 プロパティの現在の値を取得しますが、要素自体が プロパティの値を提供しない場合は、既定値ではなくアプリケーション定義の文字列を返すように指定します。
string itemType1;
object itemTypeNoDefault =
autoElement.GetCurrentPropertyValue(AutomationElement.ItemTypeProperty, true);
if (itemTypeNoDefault == AutomationElement.NotSupported)
{
itemType1 = "Unknown type";
}
else
{
itemType1 = itemStatusNoDefault as string;
}
Dim itemType1 As String
Dim itemTypeNoDefault As Object = _
autoElement.GetCurrentPropertyValue(AutomationElement.ItemTypeProperty, True)
If itemTypeNoDefault Is AutomationElement.NotSupported Then
itemType1 = "Unknown type"
Else
itemType1 = CStr(itemStatusNoDefault)
End If
注釈
この識別子は、UI オートメーションクライアント アプリケーションで使用されます。 UI オートメーション プロバイダーでは、 でAutomationElementIdentifiers同等の識別子を使用する必要があります。
このプロパティは、 または Cached プロパティからCurrent取得することもできます。
戻り値は、コントロールで定義 Stringされた です。 既定値は空の文字列です。
適用対象
こちらもご覧ください
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET