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

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

プロパティ値

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

public void SetSpinSettings()
{
    // Creates an instance of a GcComboBox control.
    GcComboBox gcComboBox1 = new GcComboBox();
    // Sets the AllowSpin to true.
    gcComboBox1.Spin.AllowSpin = true;
    // Sets the Wrap to false. When the value is the maximum or minimum, it can't spin any more.
    gcComboBox1.Spin.Wrap = false;
    // Sets the Increment to 2, the value of the control will change 2 items.
    gcComboBox1.Spin.Increment = 2;
}
'  Please use the following namespace
'  Imports System.Windows.Forms;
'  Imports GrapeCity.Win.Editors;

Public Sub SetSpinSettings()
    ' Creates an instance of a GcComboBox control.
    Dim gcComboBox1 As New GcComboBox()
    ' Sets the AllowSpin to true.
    gcComboBox1.Spin.AllowSpin = True
    ' Sets the Wrap to false. When the value is the maximum or minimum, it can't spin any more.
    gcComboBox1.Spin.Wrap = False
    ' Sets the Increment to 2, the value of the control will change 2 items.
    gcComboBox1.Spin.Increment = 2
End Sub
参照

GcComboBox クラス
GcComboBox メンバ

 

 


© 2004-2015 GrapeCity inc. All rights reserved.