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