PowerTools InputMan for ASP.NET 8.0J
PromptChar プロパティ (GcComboBox)
使用例 

フィールドに何も入力されていないときに表示するプロンプト文字を取得または設定します。
構文
Public Property PromptChar As Char
public char PromptChar {get; set;}

プロパティ値

既定値:'_'(アンダースコア)
解説
PromptCharプロパティに設定した文字は、Format.Patternプロパティに定義された入力マスクの位置にプレースホルダとして表示され、ユーザに入力を促します。なお、PromptCharプロパティには、半角または全角の文字を設定できます。文字列は設定できません。
使用例
次のサンプルコードは、PromptCharプロパティの設定方法を示します。
GcComboBox1.PromptChar = "*"
' または
GcComboBox1.PromptChar = Chr(42)
GcComboBox1.PromptChar = '*';
// または
GcComboBox1.PromptChar = (Char)42;
参照

GcComboBox クラス
GcComboBox メンバ

 

 


© 2005-2015 GrapeCity inc. All rights reserved.