バージョン

SmallChange プロパティ

マウス クリックまたは矢印キーに対応してつまみが移動する位置の数を取得または設定します。
シンタックス
'宣言
 
Public Property SmallChange As Integer
public int SmallChange {get; set;}
解説

注: このプロパティは、TrackClickActionUseSmallChange に設定される時にマウス クリックによってトリガーされるつまみの移動のみに影響します。

使用例
Imports Infragistics.Win.UltraWinEditors

        ' Set a range from 0 to 100 and start in the middle. 
        Me.UltraTrackBar1.MinValue = 0
        Me.UltraTrackBar1.MaxValue = 100
        Me.UltraTrackBar1.Value = 50

        ' Set the small and large change to 5 and 10. 
        Me.UltraTrackBar1.SmallChange = 5
        Me.UltraTrackBar1.LargeChange = 10
using Infragistics.Win.UltraWinEditors;


            // Set a range from 0 to 100 and start in the middle. 
            this.ultraTrackBar1.MinValue = 0;
            this.ultraTrackBar1.MaxValue = 100;
            this.ultraTrackBar1.Value = 50;

            // Set the small and large change to 5 and 10. 
            this.ultraTrackBar1.SmallChange = 5;
            this.ultraTrackBar1.LargeChange = 10;
参照