PowerTools InputMan for Windows Forms 8.0J
DropDownEditor プロパティ
使用例 

ドロップダウンエディットウィンドウのオブジェクトを取得します。
構文
Public ReadOnly Property DropDownEditor As DropDownEditor
public DropDownEditor DropDownEditor {get;}

プロパティ値

ドロップダウンエディットウィンドウを表すDropDownEditorオブジェクト。
解説

DropDownEditor オブジェクトでは、 ドロップダウンエディットウィンドウの表示設定および操作を行います。

ドロップダウンエディットウィンドウの動作設定は、 DropDown プロパティによって行います。

使用例
エディットウィンドウを設定した GcTextBox コントロールを作成するコード例を次に示します。
//  Please use the following namespace
//  using System.Drawing;
//  using System.Windows.Forms;
//  using GrapeCity.Win.Editors;

public void InitializeDropDownEditor()
{
    // Create an instance of a GcTextBox control.
    GcTextBox gcTextBox1 = new GcTextBox();

    // Set the BorderStyle property of DropDownEditor to BorderStyle.Fixed3D.
    gcTextBox1.DropDownEditor.BorderStyle = BorderStyle.Fixed3D;
    // Set the ContentAlignment property of DropDownEditor to ContentAlignment.TopRight.
    gcTextBox1.DropDownEditor.ContentAlignment = ContentAlignment.TopRight;
    // Set the ScrollBarMode property of DropDownEditor to ScrollBarMode.Automatic.
    // The scrollbar will shown automaticly if necessary.
    gcTextBox1.DropDownEditor.ScrollBarMode = ScrollBarMode.Automatic;
}
'  Please use the following namespace
'  Imports System.Drawing
'  Imports System.Windows.Forms
'  Imports GrapeCity.Win.Editors

Public Sub InitializeDropDownEditor()
    ' Create an instance of a GcTextBox control.
    Dim gcTextBox1 As New GcTextBox()

    '  Set the BorderStyle property of DropDownEditor to BorderStyle.Fixed3D.
    gcTextBox1.DropDownEditor.BorderStyle = BorderStyle.Fixed3D
    '  Set the ContentAlignment property of DropDownEditor to ContentAlignment.TopRight.
    gcTextBox1.DropDownEditor.ContentAlignment = ContentAlignment.TopRight
    ' Set the ScrollBarMode property of DropDownEditor to ScrollBarMode.Automatic.
    ' The scrollbar will shown automaticly if necessary.
    gcTextBox1.DropDownEditor.ScrollBarMode = ScrollBarMode.Automatic
End Sub
参照

GcTextBox クラス
GcTextBox メンバ

 

 


© 2004-2015 GrapeCity inc. All rights reserved.