Scroll event example for Visual Basic
This example demonstrates the Scroll event.
Private Sub LEADRasterView1_Scroll()
' Add a TextBox control to your form and use it for this test
Text1.Text = "Image origin: " & CStr(LEADRasterView1.DstLeft) _
& ", " & CStr(LEADRasterView1.DstTop)
Text1.Refresh
End Sub