Legend

Class
Struct
Enum
Interface
Delegate
Constructor
Method
Property
Event
Field

Method: void DrawRectangle(Pen, double, double, double, double)

  • Declared in: RT.Util.Drawing.Canvas

Declaration

public void DrawRectangle(
    Pen pen,
    double xMin,
    double yMin,
    double width,
    double height
)

Summary

Draws a rectangle using the specified pen. "xMin" and "yMin" specify the corner that has the smallest coordinates, so the resulting rectangle will be on coordinates xMin, yMin, xMin+width, yMin+height.