TextBoxBase.PageRight 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 d'une page vers la droite.
public:
void PageRight();
public void PageRight ();
member this.PageRight : unit -> unit
Public Sub PageRight ()
Exemples
L’exemple suivant montre comment utiliser la PageRight méthode pour faire défiler le contenu d’un TextBox contrôle.
private void pageRight(object sender, RoutedEventArgs e)
{
myTextBox.PageRight();
}
Private Sub pageRight(ByVal sender As Object, ByVal e As RoutedEventArgs)
myTextBox.PageRight()
End Sub