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

エディタの外観スタイルを示すTextBoxStyle値を取得または設定します。
構文
Public Property TextBoxStyle As TextBoxStyle
public TextBoxStyle TextBoxStyle {get; set;}

プロパティ値

TextBoxStyle値。
既定値はTextBoxStyle.TextOnlyです。
解説
このプロパティは、このGcMaskedComboBoxコントロールの編集領域に表示できるのがテキストのみか、イメージのみか、またはその両方を表示できるのかを決定します。
使用例
スタイルと表示書式を設定した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 メンバ
TextFormat プロパティ

 

 


© 2004-2015 GrapeCity inc. All rights reserved.