IScrollInfo.MouseWheelRight 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 vers la droite après qu’un utilisateur a cliqué sur le bouton roulette de la souris.
public:
void MouseWheelRight();
public void MouseWheelRight ();
abstract member MouseWheelRight : unit -> unit
Public Sub MouseWheelRight ()
Exemples
L’exemple suivant montre comment utiliser la méthode dans le MouseWheelRight code procédural.
private void spMouseWheelRight(object sender, RoutedEventArgs e)
{
((IScrollInfo)sp1).MouseWheelRight();
}
Private Sub spMouseWheelRight(ByVal sender As Object, ByVal args As RoutedEventArgs)
CType(sp1, IScrollInfo).MouseWheelRight()
End Sub