入力文字をパスワードのように「*」文字でマスクできますか?

文書番号 : 22364     文書種別 : 使用方法     最終更新日 : 2006/08/18
文書を印刷する
対象製品
El Tabelle Sheet 4.0J
詳細
入力文字をマスクするには、文字列型セルで PasswordChar プロパティを設定します。

[Visual Basic]
Dim objTextEditor As New GrapeCity.Win.ElTabelle.Editors.TextEditor()
objTextEditor.PasswordChar = "*"
Sheet1(0, 0).Editor = objTextEditor


[C#]
GrapeCity.Win.ElTabelle.Editors.TextEditor objTextEditor =
  new GrapeCity.Win.ElTabelle.Editors.TextEditor();
objTextEditor.PasswordChar = '*';
sheet1[0, 0].Editor = objTextEditor;
キーワード
HowTo

この文書は、以前は次のFAQ IDで公開されていました : 9528