Draw a rounded rectangle

绘制圆角矩形

实现

构造函数

属性

fillColor: any

The fill color.

填充颜色

height: number = 1

The height of the rounded rectangle.

圆角矩形的高度。

lb: number = 6

The radius of the bottom-left corner.

左下圆角的半径。

lineColor: any

(Optional) The border color.

(可选)边框颜色

lineWidth: number = 0

(Optional) The width of the border.

(可选)边框宽度。

lt: number = 6

The radius of the top-left corner.

左上圆角的半径。

percent: boolean = true

Whether the position and size are percentages.

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

rb: number = 6

The radius of the bottom-right corner.

右下圆角的半径。

rt: number = 6

The radius of the top-right corner.

右上圆角的半径。

width: number = 1

The width of the rounded rectangle.

圆角矩形的宽度。

x: number = 0

The X-axis position of the rounded rectangle.

圆角矩形的 X 轴位置。

y: number = 0

The Y-axis position of the rounded rectangle.

圆角矩形的 Y 轴位置。

ID: string = "DrawRoundRect"

Identifier for the DrawRoundRectCmd

绘制圆角矩形命令的标识符

访问器

方法

  • 参数

    • x: number

      The X-axis position of the rounded rectangle

    • y: number

      The Y-axis position of the rounded rectangle

    • width: number

      The width of the rounded rectangle

    • height: number

      The height of the rounded rectangle

    • lt: number

      The radius of the top-left corner

    • rt: number

      The radius of the top-right corner

    • lb: number

      The radius of the bottom-left corner

    • rb: number

      The radius of the bottom-right corner

    • 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

    返回 DrawRoundRectCmd

    DrawRoundRectCmd instance

    Create a DrawRoundRectCmd instance

    创建绘制圆角矩形命令的实例