IRangeValueProvider.SmallChange 属性

定义

获取一个值,当发生小更改时(例如按下了某个箭头键),会将 Value 属性加上该值或从中减去该值。

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

属性值

Double

如果控件不支持SmallChange,则Visual Basic) 中的小更改值或 null (Nothing

示例

以下示例演示了一个控件的此方法的实现,该控件的更改值为 1.0。

/// <summary>
/// Specifies the small change value.
/// </summary>
public double SmallChange
{
    get 
    { 
        return 1.0; 
    }
}
''' <summary>
''' Specifies the small change value.
''' </summary>
Public ReadOnly Property SmallChange() As Double Implements IRangeValueProvider.SmallChange
    Get
        Return 1.0
    End Get
End Property

适用于

另请参阅