PowerTools SPREAD for Windows Forms 8.0J
PasswordRevelationMode プロパティ


パスワード可視化モードを取得または設定します。
構文
'Declaration
 
Public Property PasswordRevelationMode As PasswordRevelationMode
'使用法
 
Dim instance As GcTextBoxCellType
Dim value As PasswordRevelationMode
 
instance.PasswordRevelationMode = value
 
value = instance.PasswordRevelationMode
public PasswordRevelationMode PasswordRevelationMode {get; set;}

プロパティ値

パスワード可視化モードを示すPasswordRevelationMode値の1つ。
デフォルト値はNoneで、入力したパスワードが可視化されないことを示します。
次のサンプルコードは、パスワードを入力するときに目のマークを表示します。
GrapeCity.Win.Spread.InputMan.CellType.GcTextBoxCellType inputcell1 = new GrapeCity.Win.Spread.InputMan.CellType.GcTextBoxCellType();
inputcell1.PasswordChar = Convert.ToChar("A");
inputcell1.PasswordRevelationMode = GrapeCity.Win.Spread.InputMan.CellType.PasswordRevelationMode.ShowEyeButton;
fpSpread1.Sheets[0].Cells[1, 1].CellType = inputcell1;
Dim inputcell1 As New GrapeCity.Win.Spread.InputMan.CellType.GcTextBoxCellType
inputcell1.PasswordChar = Chr(65)
inputcell1.PasswordRevelationMode = GrapeCity.Win.Spread.InputMan.CellType.PasswordRevelationMode.ShowEyeButton
FpSpread1.Sheets(0).Cells(1, 1).CellType = inputcell1
参照

GcTextBoxCellType クラス
GcTextBoxCellType メンバ

 

 


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