PowerTools InputMan for Windows Forms 8.0J
Spin プロパティ (GcTimeSpan)
使用例 

スピンボタンを動作を設定するDateSpinオブジェクトを取得または設定します。
構文
Public ReadOnly Property Spin As DateSpin
public DateSpin Spin {get;}

プロパティ値

スピンボタンの動作を設定するDateSpinオブジェクト。
解説
DateSpin オブジェクトは、スピンボタンの動作に関する設定を行います。 スピンボタンの配置などの設定はSideButtonsコレクションに 追加したSpinButtonオブジェクトによって行います。
使用例
スピンアップ機能とスピンダウン機能を利用した GcTimeSpan コントロールを作成するコード例を次に示します。
//  Please use the following namespace
//  using System.Windows.Forms;
//  using GrapeCity.Win.Editors;

public void SetSpinSettings()
{
    // Creates an instance of a GcTimeSpan control.
    GcTimeSpan gcTimeSpan1 = new GcTimeSpan();
    // Sets the AllowSpin to true.
    gcTimeSpan1.Spin.AllowSpin = true;
    // Sets the SpinMode to DateSpinMode.Value. No matter which field the caret is in, the value of the control spins.
    gcTimeSpan1.Spin.SpinMode = DateSpinMode.Value;
    // Sets the Wrap to false. When the value is the maximum or minimum, it can't spin any more.
    gcTimeSpan1.Spin.Wrap = false;
    // Sets the IncrementValue to "1:00:00", the value of the control will change 1 day every time.
    gcTimeSpan1.Spin.IncrementValue = TimeSpan.Parse("1:00:00");
}
'  Please use the following namespace
'  Imports System.Windows.Forms;
'  Imports GrapeCity.Win.Editors;

Public Sub SetSpinSettings()
    ' Creates an instance of a GcTimeSpan control.
    Dim gcTimeSpan1 As New GcTimeSpan()
    ' Sets the AllowSpin to true.
    gcTimeSpan1.Spin.AllowSpin = True
    ' Sets the SpinMode to DateSpinMode.Value. No matter which field the caret is in, the value of the control spins.
    gcTimeSpan1.Spin.SpinMode = DateSpinMode.Value
    ' Sets the Wrap to false. When the value is the maximum or minimum, it can't spin any more.
    gcTimeSpan1.Spin.Wrap = False
    ' Sets the IncrementValue to "1:00:00", the value of the control will change 1 day every time.
    gcTimeSpan1.Spin.IncrementValue = TimeSpan.Parse("1:00:00")
End Sub
参照

GcTimeSpan クラス
GcTimeSpan メンバ

 

 


© 2004-2015 GrapeCity inc. All rights reserved.