RangeValuePattern.LargeChangeProperty フィールド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
LargeChange プロパティを識別します。
public: static initonly System::Windows::Automation::AutomationProperty ^ LargeChangeProperty;
public static readonly System.Windows.Automation.AutomationProperty LargeChangeProperty;
staticval mutable LargeChangeProperty : System.Windows.Automation.AutomationProperty
Public Shared ReadOnly LargeChangeProperty As AutomationProperty
フィールド値
例
次の例では、 RangeValuePattern ターゲット コントロールから取得したオブジェクトが、現在 RangeValuePattern のプロパティ値を取得する関数に渡されます。
///--------------------------------------------------------------------
/// <summary>
/// Gets the current property values from target.
/// </summary>
/// <param name="rangeValuePattern">
/// A RangeValuePattern control pattern obtained from
/// an automation element representing a target control.
/// </param>
/// <param name="automationProperty">
/// The automation property of interest.
/// </param>
///--------------------------------------------------------------------
private object GetRangeValueProperty(
RangeValuePattern rangeValuePattern,
AutomationProperty automationProperty)
{
if (rangeValuePattern == null || automationProperty == null)
{
throw new ArgumentException("Argument cannot be null.");
}
if (automationProperty.Id ==
RangeValuePattern.MinimumProperty.Id)
{
return rangeValuePattern.Current.Minimum;
}
if (automationProperty.Id ==
RangeValuePattern.MaximumProperty.Id)
{
return rangeValuePattern.Current.Maximum;
}
if (automationProperty.Id ==
RangeValuePattern.SmallChangeProperty.Id)
{
return rangeValuePattern.Current.SmallChange;
}
if (automationProperty.Id ==
RangeValuePattern.LargeChangeProperty.Id)
{
return rangeValuePattern.Current.LargeChange;
}
if (automationProperty.Id ==
RangeValuePattern.ValueProperty.Id)
{
return rangeValuePattern.Current.Value;
}
return null;
}
'''--------------------------------------------------------------------
''' <summary>
''' Gets the current property values from target.
''' </summary>
''' <param name="rangeValuePattern">
''' A RangeValuePattern control pattern obtained from
''' an automation element representing a target control.
''' </param>
''' <param name="automationProperty">
''' The automation property of interest.
''' </param>
'''--------------------------------------------------------------------
Private Function GetRangeValueProperty( _
ByVal rangeValuePattern As RangeValuePattern, _
ByVal automationProperty As AutomationProperty) As Object
If (rangeValuePattern Is Nothing Or _
automationProperty Is Nothing) Then
Throw New ArgumentException("Argument cannot be null.")
End If
If automationProperty.Id = _
rangeValuePattern.MinimumProperty.Id Then
Return rangeValuePattern.Current.Minimum
End If
If automationProperty.Id = _
rangeValuePattern.MaximumProperty.Id Then
Return rangeValuePattern.Current.Maximum
End If
If automationProperty.Id = _
rangeValuePattern.SmallChangeProperty.Id Then
Return rangeValuePattern.Current.SmallChange
End If
If automationProperty.Id = _
rangeValuePattern.LargeChangeProperty.Id Then
Return rangeValuePattern.Current.LargeChange
End If
If automationProperty.Id = _
rangeValuePattern.ValueProperty.Id Then
Return rangeValuePattern.Current.Value
End If
Return Nothing
End Function 'GetRangeValueProperty
注釈
この識別子は、UI オートメーションクライアント アプリケーションによって使用されます。 UI オートメーション プロバイダーでは、 でRangeValuePatternIdentifiers同等のフィールドを使用する必要があります。
適用対象
こちらもご覧ください
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET