TransformPattern.CanMoveProperty フィールド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
CanMove プロパティを識別します。
public: static initonly System::Windows::Automation::AutomationProperty ^ CanMoveProperty;
public static readonly System.Windows.Automation.AutomationProperty CanMoveProperty;
staticval mutable CanMoveProperty : System.Windows.Automation.AutomationProperty
Public Shared ReadOnly CanMoveProperty As AutomationProperty
フィールド値
例
次の例では、ルート要素は、ルートの子孫であり、一連のプロパティ条件を満たすUI オートメーション要素のコレクションを返す関数に渡されます。
///--------------------------------------------------------------------
/// <summary>
/// Finds all automation elements that satisfy
/// the specified condition(s).
/// </summary>
/// <param name="rootElement">
/// 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 rootElement)
{
if (rootElement == null)
{
throw new ArgumentException("Root element cannot be null.");
}
PropertyCondition conditionCanMove =
new PropertyCondition(TransformPattern.CanMoveProperty, false);
PropertyCondition conditionCanResize =
new PropertyCondition(TransformPattern.CanResizeProperty, true);
PropertyCondition conditionCanRotate =
new PropertyCondition(TransformPattern.CanRotateProperty, true);
// Use any combination of the preceding condtions to
// find the control(s) of interest
Condition condition = new AndCondition(
conditionCanRotate,
conditionCanMove,
conditionCanResize);
return rootElement.FindAll(TreeScope.Descendants, condition);
}
'''--------------------------------------------------------------------
''' <summary>
''' Finds all automation elements that satisfy
''' the specified condition(s).
''' </summary>
''' <param name="rootElement">
''' 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 rootElement As AutomationElement) As AutomationElementCollection
If rootElement Is Nothing Then
Throw New ArgumentException("Root element cannot be null.")
End If
Dim conditionCanMove As New PropertyCondition( _
TransformPattern.CanMoveProperty, False)
Dim conditionCanResize As New PropertyCondition( _
TransformPattern.CanResizeProperty, True)
Dim conditionCanRotate As New PropertyCondition( _
TransformPattern.CanRotateProperty, True)
' Use any combination of the preceding condtions to
' find the control(s) of interest
Dim condition As AndCondition = New AndCondition( _
conditionCanRotate, conditionCanMove, conditionCanResize)
Return rootElement.FindAll(TreeScope.Descendants, condition)
End Function 'FindAutomationElement
注釈
この識別子は、UI オートメーションクライアント アプリケーションによって使用されます。 UI オートメーション プロバイダーでは、 でTransformPatternIdentifiers同等のフィールドを使用する必要があります。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET