共用方式為


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 ,則為小變更值或 null (Nothing Visual Basic) 。

範例

下列範例顯示這個方法的實作,其控制項的變更值為 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

適用於

另請參閱