Sdílet prostřednictvím


PasswordBox.Clear Metoda

Definice

Vymaže hodnotu Password vlastnosti.

public:
 void Clear();
public void Clear ();
member this.Clear : unit -> unit
Public Sub Clear ()

Příklady

Následující příklad ukazuje, jak vymazat PasswordBoxClear pomocí metody .

PasswordBox pwdBox = new PasswordBox();
pwdBox.Password = "Open Sesame!";

// Clear any contents of the PasswordBox, as well as the value stored in the Password property.
pwdBox.Clear();
Dim pwdBox As New PasswordBox()
pwdBox.Password = "Open Sesame!"

' Clear any contents of the PasswordBox, as well as the value stored in the Password property.
pwdBox.Clear()

Poznámky

Hodnota Password vlastnosti je Empty po volání této metody.

Platí pro