Skip to content

Latest commit

 

History

History
24 lines (15 loc) · 551 Bytes

File metadata and controls

24 lines (15 loc) · 551 Bytes

fill.overflow

Availability

Flash 8.

Usage

fill.overflow

Description

Property; a string that specifies the behavior of a gradient’s overflow. Acceptable values are "extend", "repeat", and "reflect"; the strings are not case-sensitive. The default value is "extend".

Example

The following example specifies that the behavior of the overflow for the current selection should be "extend":

var fill = fl.getDocumentDOM().getCustomFill();
fill.overflow = "extend";
fl.getDocumentDOM().setCustomFill(fill);