PasswordBox.Clear Methode

Definition

Löscht den Wert der Password-Eigenschaft.

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

Beispiele

Im folgenden Beispiel wird gezeigt, wie sie mit PasswordBox der Clear -Methode löschen.

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()

Hinweise

Der Wert der Password -Eigenschaft ist Empty nach einem Aufruf dieser Methode.

Gilt für: