System.Windows.Forms.Cursor.DrawStretched C# (CSharp) Method

DrawStretched() public method

public DrawStretched ( Graphics g, Rectangle targetRect ) : void
g Graphics
targetRect Rectangle
return void
		public void DrawStretched (Graphics g, Rectangle targetRect)
		{
			/*
			if (cursor == null && std_cursor != (StdCursor)(-1)) 
				cursor = XplatUI.DefineStdCursorBitmap (std_cursor);

			if (cursor != null) {
				g.DrawImage (cursor, targetRect, new Rectangle(0, 0, cursor.Width, cursor.Height), GraphicsUnit.Pixel);
			}
			*/
		}