2 overrides of PasswordProtect
System.Windows.Forms (2)
System\Windows\Forms\Controls\TextBox\MaskedTextBox.cs (1)
881private protected override bool PasswordProtect
System\Windows\Forms\Controls\TextBox\TextBox.cs (1)
261private protected override bool PasswordProtect
5 references to PasswordProtect
System.Windows.Forms (5)
System\Windows\Forms\Controls\TextBox\TextBoxBase.cs (2)
383protected override bool CanEnableIme => !(ReadOnly || PasswordProtect) && base.CanEnableIme; 1538using var textVariant = PasswordProtect ? (VARIANT)string.Empty : (VARIANT)Text;
System\Windows\Forms\Controls\TextBox\TextBoxBase.TextBoxBaseAccessibleObject.cs (2)
34return (VARIANT)owner.PasswordProtect; 70public override string? Value => this.TryGetOwnerAs(out TextBoxBase? owner) && !owner.PasswordProtect ? ValueInternal : SR.AccessDenied;
System\Windows\Forms\Controls\TextBox\TextBoxBase.TextBoxBaseUiaTextProvider.cs (1)
270? Owner.PasswordProtect