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

スピン操作のデータパッケージを取得します。
構文
Public ReadOnly Property Spin As Spin
public Spin Spin {get;}

プロパティ値

スピン操作のデータパッケージを示すSpinオブジェクト。
解説
このSpinプロパティを設定することで、スピン動作をカスタマイズできます。
使用例
スピンアップ機能とスピンダウン機能を利用したGcMaskedComboBoxコントロールを作成するコード例を次に示します。
'  Please use the following namespace
'  Imports System.Windows.Forms;
'  Imports GrapeCity.Win.Editors;

Public Sub SetSpinSettings()
    ' Creates an instance of a GcMaskedComboBox control.
    Dim gcMaskedComboBox1 As New GcMaskedComboBox()
    ' Sets the AllowSpin to true.
    gcMaskedComboBox1.Spin.AllowSpin = True
    ' Sets the Wrap to false. When the value is the maximum or minimum, it can't spin any more.
    gcMaskedComboBox1.Spin.Wrap = False
    ' Sets the Increment to 2, the value of the control will change 2 items.
    gcMaskedComboBox1.Spin.Increment = 2
End Sub
//  Please use the following namespace
//  using System.Windows.Forms;
//  using GrapeCity.Win.Editors;

public void SetSpinSettings()
{
    // Creates an instance of a GcMaskedComboBox control.
    GcMaskedComboBox gcMaskedComboBox1 = new GcMaskedComboBox();
    // Sets the AllowSpin to true.
    gcMaskedComboBox1.Spin.AllowSpin = true;
    // Sets the Wrap to false. When the value is the maximum or minimum, it can't spin any more.
    gcMaskedComboBox1.Spin.Wrap = false;
    // Sets the Increment to 2, the value of the control will change 2 items.
    gcMaskedComboBox1.Spin.Increment = 2;
}
参照

GcMaskedComboBox クラス
GcMaskedComboBox メンバ

 

 


© 2004-2015 GrapeCity inc. All rights reserved.