GetClipBox Function in Visuall Basic

  • Thread starter Thread starter Joe
  • Start date Start date
J

Joe

Is there Visual Basic.Net function equivalent to the
Visual C++ GetClipBox()? I will use that function to only
paint the portion of a form displayed on screen. Thanks
 
Hello,

Joe said:
Is there Visual Basic.Net function equivalent to the
Visual C++ GetClipBox()? I will use that function to only
paint the portion of a form displayed on screen. Thanks

\\\
Private Sub Form1_Paint( _
ByVal sender As Object, _
ByVal e As System.Windows.Forms.PaintEventArgs _
) Handles MyBase.Paint
... e.ClipRectangle ...
End Sub
///

Regards,
Herfried K. Wagner
 
Back
Top