Table of Contents

Class DrawableRoundRectangle

Namespace
ImageMagick
Assembly
Magick.NET-Q16-AnyCPU.dll

Draws a rounted rectangle given two coordinates, x & y corner radiuses and using the current stroke, stroke width, and fill settings.

public sealed class DrawableRoundRectangle : IDrawableRoundRectangle, IDrawable
Inheritance
DrawableRoundRectangle
Implements
IDrawableRoundRectangle
IDrawable
Inherited Members

Constructors

DrawableRoundRectangle(double, double, double, double, double, double)

Initializes a new instance of the DrawableRoundRectangle class.

public DrawableRoundRectangle(double upperLeftX, double upperLeftY, double lowerRightX, double lowerRightY, double cornerWidth, double cornerHeight)

Parameters

upperLeftX double

The upper left X coordinate.

upperLeftY double

The upper left Y coordinate.

lowerRightX double

The lower right X coordinate.

lowerRightY double

The lower right Y coordinate.

cornerWidth double

The corner width.

cornerHeight double

The corner height.

Properties

CornerHeight

Gets or sets the corner height.

public double CornerHeight { get; set; }

Property Value

double

CornerWidth

Gets or sets the corner width.

public double CornerWidth { get; set; }

Property Value

double

LowerRightX

Gets or sets the lower right X coordinate.

public double LowerRightX { get; set; }

Property Value

double

LowerRightY

Gets or sets the lower right Y coordinate.

public double LowerRightY { get; set; }

Property Value

double

UpperLeftX

Gets or sets the upper left X coordinate.

public double UpperLeftX { get; set; }

Property Value

double

UpperLeftY

Gets or sets the upper left Y coordinate.

public double UpperLeftY { get; set; }

Property Value

double