IRangeValueProvider.Value プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
コントロールの値を取得します。
public:
property double Value { double get(); };
public double Value { get; }
member this.Value : double
Public ReadOnly Property Value As Double
プロパティ値
コントロールの値。コントロールがサポートValueされていない場合は null (Nothing
Visual Basic)。
例
次の例は、カスタム コントロールに対するこのメソッドの実装を示しています。 このサンプルの目的上、カスタム コントロールは、基本色のアルファ設定を通じて値を表示します。
/// <summary>
/// Specifies the current value of the control.
/// </summary>
/// <remarks>
/// For the purposes of this sample, the custom control displays
/// its value through the alpha setting of the base color.
/// </remarks>
public double Value
{
get
{
return customControl.colorAlpha;
}
}
''' <summary>
''' Specifies the current value of the control.
''' </summary>
''' <remarks>
''' For the purposes of this sample, the custom control displays
''' its value through the alpha setting of the base color.
''' </remarks>
Public ReadOnly Property Value() As Double Implements IRangeValueProvider.Value
Get
Return customControl.colorAlpha
End Get
End Property