IScrollInfo.CanHorizontallyScroll Propriété
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.
Obtient ou définit une valeur qui indique si le défilement sur l’axe horizontal est possible.
public:
property bool CanHorizontallyScroll { bool get(); void set(bool value); };
public bool CanHorizontallyScroll { get; set; }
member this.CanHorizontallyScroll : bool with get, set
Public Property CanHorizontallyScroll As Boolean
Valeur de propriété
true
si le défilement est possible ; sinon, false
. Cette propriété n’a aucune valeur par défaut.
Exemples
L’exemple suivant montre comment définir la propriété à l’aide CanHorizontallyScroll du code procédural.
private void onLoad(object sender, System.EventArgs e)
{
((IScrollInfo)sp1).CanVerticallyScroll = true;
((IScrollInfo)sp1).CanHorizontallyScroll = true;
((IScrollInfo)sp1).ScrollOwner = sv1;
}
Private Sub onLoad(ByVal sender As Object, ByVal args As RoutedEventArgs)
CType(sp1, IScrollInfo).CanVerticallyScroll = True
CType(sp1, IScrollInfo).CanHorizontallyScroll = True
CType(sp1, IScrollInfo).ScrollOwner = sv1
End Sub