Word.Interfaces.GlowFormatUpdateData interface
An interface for updating data on the GlowFormat
object, for use in glowFormat.set({ ... })
.
Properties
color | Returns a |
radius | Specifies the length of the radius for a glow effect. |
transparency | Specifies the degree of transparency for the glow effect as a value between 0.0 (opaque) and 1.0 (clear). |
Property Details
color
Note
This API is provided as a preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
Returns a ColorFormat
object that represents the color for a glow effect.
color?: Word.Interfaces.ColorFormatUpdateData;
Property Value
Remarks
radius
Note
This API is provided as a preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
Specifies the length of the radius for a glow effect.
radius?: number;
Property Value
number
Remarks
transparency
Note
This API is provided as a preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
Specifies the degree of transparency for the glow effect as a value between 0.0 (opaque) and 1.0 (clear).
transparency?: number;
Property Value
number