Graphics::TranslateClip Method (Single, Single)
Translates the clipping region of this Graphics by specified amounts in the horizontal and vertical directions.
Assembly: System.Drawing (in System.Drawing.dll)
Parameters
- dx
- Type: System::Single
The x-coordinate of the translation.
- dy
- Type: System::Single
The y-coordinate of the translation.
The following code example is designed for use with Windows Forms, and it requires PaintEventArgs e, which is a parameter of the Paint event handler. The code performs the following actions:
Creates a rectangle for the clipping region.
Sets the clipping region to the rectangle.
Translates the clipping region by a vector (50.0F, 50.0F).
Fills a large rectangle with a solid black brush.
The result is a translated, small, black rectangle.
public: void TranslateClipFloat( PaintEventArgs^ e ) { // Create rectangle for clipping region. RectangleF clipRect = RectangleF(0.0F,0.0F,100.0F,100.0F); // Set clipping region of graphics to rectangle. e->Graphics->SetClip( clipRect ); // Translate clipping region. float dx = 50.0F; float dy = 50.0F; e->Graphics->TranslateClip( dx, dy ); // Fill rectangle to demonstrate translated clip region. e->Graphics->FillRectangle( gcnew SolidBrush( Color::Black ), 0, 0, 500, 300 ); }
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.