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

テキストのカスタマイズに使用する書式文字列を取得または設定します。
構文
Public Property TextFormat As String
public string TextFormat {get; set;}

プロパティ値

テキストのカスタマイズに使用する書式文字列を示すSystem.String値。
例外
例外解説
System.ArgumentExceptionvalueが有効なTextFormatではありません。
解説
このプロパティを使用すると、このコントロールのTextの表示書式をカスタマイズできます。
使用例
スタイルと表示書式を設定した 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 メンバ
TextBoxStyle プロパティ

 

 


© 2004-2015 GrapeCity inc. All rights reserved.