Graphics::TranslateClip Method (Int32, Int32)
.NET Framework (current version)
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::Int32
The x-coordinate of the translation.
- dy
-
Type:
System::Int32
The y-coordinate of the translation.
The following code example is designed for use with Windows Forms, and it requires PaintEventArgse, 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, 50).
Fills a large rectangle with a solid black brush.
The result is a translated, small, black rectangle.
public: void TranslateClipInt( PaintEventArgs^ e ) { // Create rectangle for clipping region. Rectangle clipRect = Rectangle(0,0,100,100); // Set clipping region of graphics to rectangle. e->Graphics->SetClip( clipRect ); // Translate clipping region. int dx = 50; int dy = 50; e->Graphics->TranslateClip( dx, dy ); // Fill rectangle to demonstrate translated clip region. e->Graphics->FillRectangle( gcnew SolidBrush( Color::Black ), 0, 0, 500, 300 ); }
.NET Framework
Available since 1.1
Available since 1.1
Show: