C# Класс ImageMagick.DrawableRectangle

Draws a rectangle given two coordinates and using the current stroke, stroke width, and fill settings.
Наследование: IDrawable
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
DrawableRectangle ( double upperLeftX, double upperLeftY, double lowerRightX, double lowerRightY )

Initializes a new instance of the DrawableRectangle class.

DrawableRectangle ( Rectangle rectangle ) : System.Drawing

Initializes a new instance of the DrawableRectangle class.

IDrawable ( IDrawingWand wand ) : void

Draws this instance with the drawing wand.

Описание методов

DrawableRectangle() публичный метод

Initializes a new instance of the DrawableRectangle class.
public DrawableRectangle ( double upperLeftX, double upperLeftY, double lowerRightX, double lowerRightY )
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.

DrawableRectangle() публичный метод

Initializes a new instance of the DrawableRectangle class.
public DrawableRectangle ( Rectangle rectangle ) : System.Drawing
rectangle Rectangle The to use.
Результат System.Drawing

IDrawable() публичный метод

Draws this instance with the drawing wand.
public IDrawable ( IDrawingWand wand ) : void
wand IDrawingWand The want to draw on.
Результат void