IScrollInfo.LineLeft Method

Definition

Scrolls left within content by one logical unit.

public:
 void LineLeft();
public void LineLeft ();
abstract member LineLeft : unit -> unit
Public Sub LineLeft ()

Examples

The following example shows how to use the LineLeft method in procedural code.

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

Applies to