GrapeCity.Win.PluginInputMan アセンブリ > GrapeCity.Win.Spread.InputMan.CellType 名前空間 > GcTextBoxCellType クラス : PasswordChar プロパティ |
PasswordCharを使用して、ダイアログボックスにパスワードフィールドを作成できます。任意の半角文字を使用できますが、Windowsベースのアプリケーションではアスタリスク(*)(Chr(42))を使うのが一般的です。
このプロパティはTextプロパティには影響しません。Textにはユーザーが入力した文字列、またはコードから設定した文字列がそのまま格納されます。PasswordCharを0(デフォルト値)に設定すると、コントロールの実際のテキストが表示されます。
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