IScrollInfo.PageUp 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 d’une page vers le haut.
public:
void PageUp();
public void PageUp ();
abstract member PageUp : unit -> unit
Public Sub PageUp ()
Exemples
L’exemple suivant montre comment utiliser la méthode dans le MouseWheelLeft code procédural.
private void spPageUp(object sender, RoutedEventArgs e)
{
((IScrollInfo)sp1).PageUp();
}
Private Sub spPageUp(ByVal sender As Object, ByVal args As RoutedEventArgs)
CType(sp1, IScrollInfo).PageUp()
End Sub