PowerTools SPREAD for Windows Forms 8.0J
PasswordChar プロパティ (GcTextBoxCellType)


単一行のテキストコントロールで、パスワードの文字の代わりに表示するプレースホルダ文字を取得または設定します。
構文
'Declaration
 
Public Property PasswordChar As Char
'使用法
 
Dim instance As GcTextBoxCellType
Dim value As Char
 
instance.PasswordChar = value
 
value = instance.PasswordChar
public char PasswordChar {get; set;}

プロパティ値

プレースホルダ文字を表すChar値。 既定値は\0です。
解説

PasswordCharを使用して、ダイアログボックスにパスワードフィールドを作成できます。任意の半角文字を使用できますが、Windowsベースのアプリケーションではアスタリスク(*)(Chr(42))を使うのが一般的です。

このプロパティはGcTextBox.Textプロパティには影響しません。GcTextBox.Textにはユーザーが入力した文字列、またはコードから設定した文字列がそのまま格納されます。PasswordCharを0(デフォルト値)に設定すると、コントロールの実際のテキストが表示されます。

次のサンプルコードは、PasswordChar プロパティを使用します。
GrapeCity.Win.Spread.InputMan.CellType.GcTextBoxCellType gctext = new GrapeCity.Win.Spread.InputMan.CellType.GcTextBoxCellType();
gctext.PasswordChar = Convert.ToChar("A");
fpSpread1.Sheets[0].Cells[0, 0].CellType = gctext;
Dim gctext As New GrapeCity.Win.Spread.InputMan.CellType.GcTextBoxCellType()
gctext.PasswordChar = Chr(65)
FpSpread1.Sheets(0).Cells(0, 0).CellType = gctext
参照

GcTextBoxCellType クラス
GcTextBoxCellType メンバ

 

 


© 2004-2015, GrapeCity inc. All rights reserved.