Interface: IDefaultTextStroke
A structure defining a range of values, a color, and a size of text stroke.
Example
configuration = {
widgets: {
TopToolbar: {
textStrokeButtonEnabled: true,
textStrokeColorButtonEnabled: true,
textStroke: { max: 1, min: 0.1, step: 0.1, color: "azure" },
},
},
};
Extends
Properties
min?
optionalmin?:number
Sets a max value of a range.
Inherited from
max?
optionalmax?:number
Sets a min value of a range.
Inherited from
step?
optionalstep?:number
The parameter changes by this step value.
Inherited from
color?
optionalcolor?:string
The text color, in CSS format.
size?
optionalsize?:number
The text stroke size.