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

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

プロパティ値

テキストのカスタマイズに使用する書式文字列を示すSystem.String値。
例外
例外解説
System.ArgumentExceptionvalueが有効なTextFormatではありません。
解説
このプロパティを使用すると、このコントロールのTextの表示書式をカスタマイズすることができます。
使用例
スタイルと表示書式を設定したGcMaskedComboBoxコントロールを作成するコード例を次に示します。この例では他にTextBoxStyleTextFormatプロパティを使用しています。
'  Please use the following namespace
'  Imports System.Windows.Forms;
'  Imports GrapeCity.Win.Editors;

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

    ' Sets the TextBoxStyle to show both the image and the text.
    ' If sets it to ImageOnly, text will not be displayed.
    gcMaskedComboBox1.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.
    gcMaskedComboBox1.TextFormat = "[0] (Tel) [2]"

End Sub
//  Please use the following namespace
//  using System.Windows.Forms;
//  using GrapeCity.Win.Editors;

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

    // Sets the TextBoxStyle to show both the image and the text.
    // If sets it to ImageOnly, text will not be displayed.
    gcMaskedComboBox1.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.
    gcMaskedComboBox1.TextFormat = "[0] (Tel) [2]";

}
参照

GcMaskedComboBox クラス
GcMaskedComboBox メンバ
TextBoxStyle プロパティ

 

 


© 2004-2015 GrapeCity inc. All rights reserved.