Praeclarum.Graphics.SvgGraphics.DrawRoundedRect C# (CSharp) Метод

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

public DrawRoundedRect ( float x, float y, float width, float height, float radius, float w ) : void
x float
y float
width float
height float
radius float
w float
Результат void
		public void DrawRoundedRect (float x, float y, float width, float height, float radius, float w)
		{
			WriteLine("<rect x=\"{0}\" y=\"{1}\" width=\"{2}\" height=\"{3}\" rx=\"{4}\" ry=\"{4}\" stroke=\"{5}\" stroke-opacity=\"{6}\" stroke-width=\"{7}\" fill=\"none\" />", 
				x, y, width, height,
				radius,
				_lastColor, _lastColorOp,
				w);
		}