コントロールの Multiline プロパティがTrueのとき、PasswordCharプロパティは適用できません。
Imports Infragistics.Win Imports Infragistics.Win.UltraWinEditors Private Sub SetupPasswordEditor() ' Set the MaxLength property to 10 to limit the ' number of characters that can be typed Me.UltraTextEditor1.MaxLength = 10 ' Set the PasswordChar to the asterisk ("*"), so the actual ' characters that are typed cannot be seen on the screen. Me.UltraTextEditor1.PasswordChar = "*" End Sub
using System.Diagnostics; using Infragistics.Win; using Infragistics.Win.UltraWinEditors; private void SetupPasswordEditor() { // Set the MaxLength property to 10 to limit the // number of characters that can be typed this.ultraTextEditor1.MaxLength = 10; // Set the PasswordChar to the asterisk ("*"), so the actual // characters that are typed cannot be seen on the screen. this.ultraTextEditor1.PasswordChar = '*'; }