MultipleViewPattern.SupportedViewsProperty フィールド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
コントロールに固有のビューのコレクションを取得するプロパティを識別します。
public: static initonly System::Windows::Automation::AutomationProperty ^ SupportedViewsProperty;
public static readonly System.Windows.Automation.AutomationProperty SupportedViewsProperty;
staticval mutable SupportedViewsProperty : System.Windows.Automation.AutomationProperty
Public Shared ReadOnly SupportedViewsProperty As AutomationProperty
フィールド値
例
次の例では、 をサポートするコントロールで使用できる現在のビューを表す整数識別子のコレクションを取得します MultipleViewPattern。
///--------------------------------------------------------------------
/// <summary>
/// Finds all automation elements that satisfy
/// the specified condition(s).
/// </summary>
/// <param name="targetApp">
/// The automation element from which to start searching.
/// </param>
/// <returns>
/// A collection of automation elements satisfying
/// the specified condition(s).
/// </returns>
///--------------------------------------------------------------------
private AutomationElementCollection FindAutomationElement(
AutomationElement targetApp)
{
if (targetApp == null)
{
throw new ArgumentException("Root element cannot be null.");
}
PropertyCondition conditionSupportsMultipleView =
new PropertyCondition(
AutomationElement.IsMultipleViewPatternAvailableProperty, true);
return targetApp.FindAll(
TreeScope.Descendants, conditionSupportsMultipleView);
}
'/--------------------------------------------------------------------
'/ <summary>
'/ Finds all automation elements that satisfy
'/ the specified condition(s).
'/ </summary>
'/ <param name="targetApp">
'/ The automation element from which to start searching.
'/ </param>
'/ <returns>
'/ A collection of automation elements satisfying
'/ the specified condition(s).
'/ </returns>
'/--------------------------------------------------------------------
Private Function FindAutomationElement( _
ByVal targetApp As AutomationElement) As AutomationElementCollection
If targetApp Is Nothing Then
Throw New ArgumentException("Root element cannot be null.")
End If
Dim conditionSupportsMultipleView As New PropertyCondition( _
AutomationElement.IsMultipleViewPatternAvailableProperty, True)
Return targetApp.FindAll( _
TreeScope.Descendants, conditionSupportsMultipleView)
End Function 'FindAutomationElement
///--------------------------------------------------------------------
/// <summary>
/// Gets the collection of currently supported views from a target.
/// </summary>
/// <param name="multipleViewControl">
/// The current multiple view control.
/// </param>
/// <returns>
/// A collection of identifiers representing the supported views.
/// </returns>
///--------------------------------------------------------------------
private int[] GetSupportedViewsFromPattern(
AutomationElement multipleViewControl)
{
if (multipleViewControl == null)
{
throw new ArgumentNullException(
"AutomationElement parameter must not be null.");
}
return multipleViewControl.GetCurrentPropertyValue(
MultipleViewPattern.SupportedViewsProperty) as int[];
}
'/--------------------------------------------------------------------
'/ <summary>
'/ Gets the collection of currently supported views from a target.
'/ </summary>
'/ <param name="multipleViewControl">
'/ The current multiple view control.
'/ </param>
'/ <returns>
'/ A collection of identifiers representing the supported views.
'/ </returns>
'/--------------------------------------------------------------------
Private Function GetSupportedViewsFromPattern( _
ByVal multipleViewControl As AutomationElement) As Integer()
If multipleViewControl Is Nothing Then
Throw New ArgumentNullException( _
"AutomationElement parameter must not be null.")
End If
Return DirectCast(multipleViewControl.GetCurrentPropertyValue( _
MultipleViewPattern.SupportedViewsProperty), Integer())
End Function 'GetSupportedViewsProperty
注釈
この識別子は、UI オートメーション クライアント アプリケーションで使用されます。 UI オートメーション プロバイダーでは、 でMultipleViewPatternIdentifiers同等のフィールドを使用する必要があります。
このプロパティは にMultipleViewPattern.MultipleViewPatternInformation存在せず、 または GetCachedPropertyValueを使用GetCurrentPropertyValueして取得する必要があります。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET