Graphics.DrawIconUnstretched Method
Assembly: System.Drawing (in system.drawing.dll)
public void DrawIconUnstretched ( Icon icon, Rectangle targetRect )
public function DrawIconUnstretched ( icon : Icon, targetRect : Rectangle )
Not applicable.
Parameters
- icon
Icon to draw.
- targetRect
Rectangle structure that specifies the location and size of the resulting image. The image is not scaled to fit this rectangle, but retains its original size. If the image is larger than the rectangle, it is clipped to fit inside it.
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 an icon from a standard Windows icon file SampIcon.ico in the example folder.
-
Creates a rectangle in which to draw the icon.
-
Draws the icon to the screen.
The position of the rectangle locates the icon on the screen, and the drawn icon is unscaled and unclipped.
private: void DrawIconUnstretchedRectangle( PaintEventArgs^ e ) { // Create icon. System::Drawing::Icon^ newIcon = gcnew System::Drawing::Icon( "SampIcon.ico" ); // Create rectangle for icon. Rectangle rect = Rectangle(100,100,200,200); // Draw icon to screen. e->Graphics->DrawIconUnstretched( newIcon, rect ); }
Windows 98, Windows Server 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.