PowerTools InputMan for ASP.NET 8.0J
Spin プロパティ (GcComboBox)
使用例 

スピンボタンを表示するGrapeCity.Web.Input.Core.Spinオブジェクトを取得または設定します。
構文
Public Shadows Property Spin As Spin
public new Spin Spin {get; set;}
解説
Spinプロパティが参照するGrapeCity.Web.Input.Core.Spinオブジェクトは、コントロール上にスピンボタンを表示させます。 スピンボタンを使うことで、リストボックス内の項目を順番に選択することができます。

スピンボタンとドロップダウンボタンの配置は、SpinPositionプロパティを使用します。
使用例
次のサンプルコードは、コンボコントロールにスピンボタンを設定する方法を示します。
Imports GrapeCity.Web.Input.Core

GcComboBox1.Spin.Delay = 100
GcComboBox1.Spin.Enabled = True
GcComboBox1.Spin.Increment = 5
GcComboBox1.Spin.Position = ButtonPosition.Inside
GcComboBox1.Spin.SpinOnKeys = True
GcComboBox1.Spin.Visible = True
GcComboBox1.Spin.Wrap = True
using GrapeCity.Web.Input.Core;

GcComboBox1.Spin.Delay = 100;
GcComboBox1.Spin.Enabled = true;
GcComboBox1.Spin.Increment = 5;
GcComboBox1.Spin.Position = ButtonPosition.Inside;
GcComboBox1.Spin.SpinOnKeys = true;
GcComboBox1.Spin.Visible = true;
GcComboBox1.Spin.Wrap = true;
参照

GcComboBox クラス
GcComboBox メンバ

 

 


© 2005-2015 GrapeCity inc. All rights reserved.