Draw a rectangle

绘制矩形

实现

构造函数

属性

fillColor: any

The fill color

填充颜色

height: number = 1

The height of the rectangle.

矩形高度。

lineColor: any

(Optional) The border color

(可选)边框颜色

lineWidth: number = 0

(Optional) The width of the border.

(可选)边框宽度。

percent: boolean = true

Whether the position and size are percentages.

位置和大小是否是百分比。

width: number = 1

The width of the rectangle.

矩形宽度。

x: number = 0

The X-axis position to start drawing.

开始绘制的 X 轴位置。

y: number = 0

The Y-axis position to start drawing.

开始绘制的 Y 轴位置。

ID: string = "DrawRect"

Identifier for the DrawRectCmd

绘制矩形命令的标识符

访问器

方法

  • 参数

    • x: number

      The X-axis position to start drawing

    • y: number

      The Y-axis position to start drawing

    • width: number

      The width of the rectangle

    • height: number

      The height of the rectangle

    • fillColor: any

      The fill color

    • lineColor: any

      The border color

    • lineWidth: number

      The width of the border

    • 可选percent: boolean

      Whether the position and size are percentages

    返回 DrawRectCmd

    DrawRectCmd instance

    Create a DrawRectCmd instance

    创建绘制矩形的命令实例