IRangeValueProvider.Minimum 属性

定义

获取控件支持的最小范围值。

public:
 property double Minimum { double get(); };
public double Minimum { get; }
member this.Minimum : double
Public ReadOnly Property Minimum As Double

属性值

Double

控件支持的最小值,如果控件不支持Minimum,则为 Visual Basic) 中的 null (Nothing

示例

以下示例演示了一个控件的此方法的实现,该控件的最小值为 0.0。

/// <summary>
/// Specifies the minimum value of the range.
/// </summary>
public double Minimum
{
    get 
    { 
        return 0.0;
    }
}
''' <summary>
''' Specifies the minimum value of the range.
''' </summary>
Public ReadOnly Property Minimum() As Double Implements IRangeValueProvider.Minimum
    Get
        Return 0.0
    End Get
End Property

适用于

另请参阅