FieldShadow: {
    shadowBlur: number;
    shadowColor: string;
    shadowOffsetX: number;
    shadowOffsetY: number;
    shadowTransparency: number;
}

Defines the settings for a field shadow.

Type declaration

  • shadowBlur: number

    The blur factor to use for the shadow in the range of [0,10]. A value of 0 means no blur. The higher the value, the more blur is applied. A good default value is 2.

  • shadowColor: string

    The shadow color to use. This can be any RGB value.

  • shadowOffsetX: number

    The offset of the shadow in points. The shadow is offset from the field in the x and y direction.

  • shadowOffsetY: number

    The offset of the shadow in points. The shadow is offset from the field in the x and y direction.

  • shadowTransparency: number

    The opacity of the shadow in the range of [0,1]. A value of 0 means no shadow. The higher the value, the more opaque the shadow is.

Generated using TypeDoc