IScrollInfo.LineRight Method

Definition

Scrolls right within content by one logical unit.

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

Examples

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

private void spLineRight(object sender, RoutedEventArgs e)
{
    ((IScrollInfo)sp1).LineRight();
}
Private Sub spLineRight(ByVal sender As Object, ByVal args As RoutedEventArgs)

    CType(sp1, IScrollInfo).LineRight()
End Sub

Applies to