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

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

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