@awayjs/graphics
Version:
AwayJS graphics classes
23 lines • 726 B
TypeScript
/**
* The SpreadMethod class provides values for the <code>spreadMethod</code>
* parameter in the <code>beginGradientFill()</code> and
* <code>lineGradientStyle()</code> methods of the Graphics class.
*
* <p>The following example shows the same gradient fill using various spread
* methods:</p>
*/
export declare class SpreadMethod {
/**
* Specifies that the gradient use the <i>pad</i> spread method.
*/
static PAD: string;
/**
* Specifies that the gradient use the <i>reflect</i> spread method.
*/
static REFLECT: string;
/**
* Specifies that the gradient use the <i>repeat</i> spread method.
*/
static REPEAT: string;
}
//# sourceMappingURL=SpreadMethod.d.ts.map