TextBoxBase.PageDown Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Fait défiler le contenu du contrôle à la page suivante.
public:
void PageDown();
public void PageDown ();
member this.PageDown : unit -> unit
Public Sub PageDown ()
Exemples
L’exemple suivant montre comment utiliser la PageDown méthode pour faire défiler le contenu d’un TextBox contrôle.
private void pageDown(object sender, RoutedEventArgs e)
{
myTextBox.PageDown();
}
Private Sub pageDown(ByVal sender As Object, ByVal e As RoutedEventArgs)
myTextBox.PageDown()
End Sub