PowerTools InputMan for ASP.NET 8.0J
DropDown クラス
メンバ  使用例 

DropDownクラスは、ドロップダウンボタンの動作を設定します。
構文
Public Class DropDown 
   Inherits BaseViewState
public class DropDown : BaseViewState 
解説
ドロップダウンボタンは、コントロールからドロップダウンされるカレンダー、日付時刻ピッカー、数値パッド、電卓、エディットウィンドウ、リストを表示するときに使用します。

各コントロールでドロップダウン可能なオブジェクトは以下のとおりです。
コントロール ドロップダウンオブジェクト
テキスト エディットウィンドウ
日付時刻、日付 カレンダー、数値パッド、日付時刻ピッカー
時刻 数値パッド、時刻ピッカー
数値 電卓、数値パッド
コンボ リストボックス
使用例
次のサンプルコードは、テキストコントロールにドロップダウンボタンを設定する方法を示します。
Imports GrapeCity.Web.Input.Core

GcTextBox1.DropDown.AutoDropDown = True
GcTextBox1.DropDown.DropDownShadow = True
GcTextBox1.DropDown.Enabled = True
GcTextBox1.DropDown.Position = ButtonPosition.Outside
GcTextBox1.DropDown.Visible = True
using GrapeCity.Web.Input.Core;

GcTextBox1.DropDown.AutoDropDown = true;
GcTextBox1.DropDown.DropDownShadow = true;
GcTextBox1.DropDown.Enabled = true;
GcTextBox1.DropDown.Position = ButtonPosition.Outside;
GcTextBox1.DropDown.Visible = true;
継承階層

System.Object
   GrapeCity.Web.Input.Core.NotifyObject
      GrapeCity.Web.Input.Core.BaseViewState
         GrapeCity.Web.Input.Core.DropDown
            GrapeCity.Web.Input.IMDate.DateDropDown
            GrapeCity.Web.Input.IMNumber.NumberDropDown

参照

DropDown メンバ
GrapeCity.Web.Input.Core 名前空間
GcDateTime.DropDown プロパティ
GcNumber.DropDown プロパティ
GcTextBox.DropDown プロパティ
GcComboBox.DropDown プロパティ

 

 


© 2005-2015 GrapeCity inc. All rights reserved.