IRangeValueProvider.LargeChange 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得當進行大幅變更 (例如使用 PAGE DOWN 鍵) 時,會在 Value 屬性上加入或減去的值。
public:
property double LargeChange { double get(); };
public double LargeChange { get; }
member this.LargeChange : double
Public ReadOnly Property LargeChange As Double
屬性值
控制項所支援的大型變更值,如果控制項不支援 LargeChange ,則為 Visual Basic) 中的 null (Nothing
。
範例
下列範例顯示這個方法的實作,適用于具有 5.0 大變更值的控制項。
/// <summary>
/// Specifies the large change value.
/// </summary>
public double LargeChange
{
get
{
return 5.0;
}
}
''' <summary>
''' Specifies the large change value.
''' </summary>
Public ReadOnly Property LargeChange() As Double Implements IRangeValueProvider.LargeChange
Get
Return 5.0
End Get
End Property