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

スピンボタンとドロップダウンボタンの位置関係を取得または設定します。
構文
Public Property SpinPosition As SpinPosition
public SpinPosition SpinPosition {get; set;}

プロパティ値

既定値:GrapeCity.Web.Input.Core.SpinPosition.Left
解説
SpinPositionプロパティを使用すると、スピンボタン(Spin)とドロップダウンボタン(DropDown)をともに入力領域の内側または外側に置く場合に、両ボタンの位置関係を取得または設定できます。
使用例
次のサンプルコードは、コントロールにスピンボタンとドロップダウンボタンを設定する方法を示します。
Imports GrapeCity.Web.Input.Core

' スピンボタンの設定
GcComboBox1.Spin.Enabled = True
GcComboBox1.Spin.Position = ButtonPosition.Inside
GcComboBox1.Spin.Visible = True

' ドロップダウンボタンの設定
GcComboBox1.DropDown.Enabled = True
GcComboBox1.DropDown.Position = ButtonPosition.Outside
GcComboBox1.DropDown.Visible = True

' スピンボタンをドロップダウンボタンの右に配置します。
GcComboBox1.SpinPosition = SpinPosition.Right
using GrapeCity.Web.Input.Core;

// スピンボタンの設定
GcComboBox1.Spin.Enabled = true;
GcComboBox1.Spin.Position = ButtonPosition.Inside;
GcComboBox1.Spin.Visible = true;

// ドロップダウンボタンの設定
GcComboBox1.DropDown.Enabled = true;
GcComboBox1.DropDown.Position = ButtonPosition.Outside;
GcComboBox1.DropDown.Visible = true;

// スピンボタンをドロップダウンボタンの右に配置します。
GcComboBox1.SpinPosition = SpinPosition.Right;
参照

GcComboBox クラス
GcComboBox メンバ

 

 


© 2005-2015 GrapeCity inc. All rights reserved.