Praeclarum.Graphics.WmfGraphics.DrawRect C# (CSharp) Метод

DrawRect() публичный Метод

public DrawRect ( float x, float y, float width, float height, float w ) : void
x float
y float
width float
height float
w float
Результат void
		public void DrawRect (float x, float y, float width, float height, float w)
		{
            SelectNullBrush ();
            SelectPenRecord (w);

            StartRecord (Function.Rectangle);
            WriteRecordCoord (x + width + 1, y + height + 1);
            WriteRecordCoord (x, y);
            EndRecord ();
		}