加入提示文字參數。

interface AddPromptTextParameter {
    align: TEXT_ALIGN;
    text: string;
    borderColor?: ov.Color;
    borderSize?: number;
    color?: ov.Color;
    font?: string;
    offsetX?: number;
    offsetY?: number;
    size?: number;
}

Properties

align: TEXT_ALIGN

對齊方式。

text: string

文字。

borderColor?: ov.Color

邊框顏色。

Default Value

new ov.Color("#000000")
borderSize?: number

邊框大小。

color?: ov.Color

文字顏色。

Default Value

new ov.Color("#FFFFFF")
font?: string

字型。

Default Value

"Arial"
offsetX?: number

文字水平方向位移,單位px,右為正。

Default Value

0
offsetY?: number

文字垂直位移,單位px,下為正。

Default Value

0
size?: number

文字大小。

Default Value

16

Generated using TypeDoc