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