PowerTools InputMan for ASP.NET 8.0J
DropDownEditor プロパティ
使用例 

ドロップダウン表示されるDropDownEditorオブジェクトを取得します。
構文
Public Property DropDownEditor As DropDownEditor
public DropDownEditor DropDownEditor {get; set;}
解説
DropDownEditorプロパティは、コントロールにドロップダウンエディットウィンドウを表示します。
使用例
次のサンプルコードは、DropDownEditorプロパティの使用方法を示します。
Imports GrapeCity.Web.Input.Core

' ドロップダウンボタンを表示します。
GcTextBox1.DropDown.Visible = True

' ドロップダウンエディットの配置位置を設定します。
GcTextBox1.DropDownEditor.Align = AlignEnum.Left

' サイズを変更できないようにします。
GcTextBox1.DropDownEditor.AllowResize = False

' ドロップダウンエディットの色とフォントを設定します。
GcTextBox1.DropDownEditor.BackColor = System.Drawing.Color.LightYellow
GcTextBox1.DropDownEditor.ForeColor = System.Drawing.Color.Blue
GcTextBox1.DropDownEditor.Font.Name = "MS P ゴシック"

' スクロールバーを設定します。
GcTextBox1.DropDownEditor.ScrollBars = ScrollBars.Vertical
GcTextBox1.DropDownEditor.ScrollBarMode = ScrollBarMode.Automatic
using GrapeCity.Web.Input.Core;

// ドロップダウンボタンを表示します。
GcTextBox1.DropDown.Visible = true;

// ドロップダウンエディットの配置位置を設定します。
GcTextBox1.DropDownEditor.Align = AlignEnum.Left;

// サイズを変更できないようにします。
GcTextBox1.DropDownEditor.AllowResize = false;

// ドロップダウンエディットの色とフォントを設定します。
GcTextBox1.DropDownEditor.BackColor = System.Drawing.Color.LightYellow;
GcTextBox1.DropDownEditor.ForeColor = System.Drawing.Color.Blue;
GcTextBox1.DropDownEditor.Font.Name = "MS P ゴシック";

// スクロールバーを設定します。
GcTextBox1.DropDownEditor.ScrollBars = ScrollBars.Vertical;
GcTextBox1.DropDownEditor.ScrollBarMode = ScrollBarMode.Automatic;
参照

GcTextBox クラス
GcTextBox メンバ

 

 


© 2005-2015 GrapeCity inc. All rights reserved.