投稿者 たけ  () 投稿日時 2008/8/21 19:16:00
http://dobon.net/vb/dotnet/graphics/zoominout.html 
上記のサイトのサンプルで意味が理解できかねる部分が 
ありますのでご教授願います。 
'PictureBox1のMouseDownイベントハンドラ 
Private Sub PictureBox1_MouseDown(ByVal sender As Object, _ 
    ByVal e As System.Windows.Forms.MouseEventArgs) _ 
    Handles PictureBox1.MouseDown 
    Dim pb As PictureBox = CType(sender, PictureBox) 
    'クリックされた位置を画像上の位置に変換 
    Dim imgPoint As New Point(CInt((e.X - imgRect.X) / ratio), _ 
        CInt((e.Y - imgRect.Y) / ratio)) 
 
 
下記のコードは、どういう意味なのでしょうか? 
Dim pb As PictureBox = CType(sender, PictureBox)