PowerTools InputMan for Windows Forms 8.0J
TextBoxStyle プロパティ (GcComboBox)
使用例 

テキストボックスのスタイルを取得または設定します。
構文
Public Property TextBoxStyle As TextBoxStyle
public TextBoxStyle TextBoxStyle {get; set;}

プロパティ値

テキストボックスのスタイルを表すTextBoxStyle列挙体。 既定値はTextOnlyです。
解説
このプロパティは、このGcComboBoxコントロールの編集領域に表示できるのがテキストのみか、イメージのみか、またはその両方を表示できるのかを決定します。
使用例
スタイルと表示書式を設定した GcComboBoxコントロールを作成するコード例を次に示します。この例では他に TextBoxStyle と TextFormat プロパティを使用しています。
//  Please use the following namespace
//  using System.Windows.Forms;
//  using GrapeCity.Win.Editors;

public void SetTextFormat()
{
    // Creates an instance of a GcComboBox control.
    GcComboBox gcComboBox1 = new GcComboBox();

    // Sets the TextBoxStyle to show both the image and the text.
    // If sets it to ImageOnly, text will not be displayed.
    gcComboBox1.TextBoxStyle = TextBoxStyle.Both;
    // Sets the TextFormat to "[0] (Tel) [2]". 
    // And the text will display the first colum and the 3rd colum's text with the Tel string in the middle of the text.
    gcComboBox1.TextFormat = "[0] (Tel) [2]";

}
'  Please use the following namespace
'  Imports System.Windows.Forms;
'  Imports GrapeCity.Win.Editors;

Public Sub SetTextFormat()
    ' Creates an instance of a GcComboBox control.
    Dim gcComboBox1 As New GcComboBox()

    ' Sets the TextBoxStyle to show both the image and the text.
    ' If sets it to ImageOnly, text will not be displayed.
    gcComboBox1.TextBoxStyle = TextBoxStyle.Both
    ' Sets the TextFormat to "[0] (Tel) [2]". 
    ' And the text will display the first colum and the 3rd colum's text with the Tel string in the middle of the text.
    gcComboBox1.TextFormat = "[0] (Tel) [2]"

End Sub
参照

GcComboBox クラス
GcComboBox メンバ
TextFormat プロパティ

 

 


© 2004-2015 GrapeCity inc. All rights reserved.