Interface IRubberbandStyle
A structure defining the appearance of a selected area when the left mouse button is holding down.
Package: @aurigma/design-editor-iframe
Properties
color
The color of the selection border, in the RGBA format. The default value is "rgba(0,0,0,1)".
Declaration
color: string;
Property Value
| Type | Description |
|---|---|
| string | The color of the selection border, in the RGBA format. The default value is "rgba(0,0,0,1)". |
dashPattern
The style of dashes of the selection border, as an array of numbers, which mean the length of the dash or gap in the dashed line. By default, the array is [2, 2].
Declaration
dashPattern: number[];
Property Value
| Type | Description |
|---|---|
| number[] | The style of dashes of the selection border, as an array of numbers, which mean the length of the dash or gap in the dashed line. By default, the array is [2, 2]. |
fillColor
The fill color of the selection, in the RGBA format. The default value is "rgba(0,0,0,0)".
Declaration
fillColor: string;
Property Value
| Type | Description |
|---|---|
| string | The fill color of the selection, in the RGBA format. The default value is "rgba(0,0,0,0)". |
width
The selection border width, in pixels. The default value is 1.
Declaration
width: number;
Property Value
| Type | Description |
|---|---|
| number | The selection border width, in pixels. The default value is 1. |