Defines the gradient spread type, which indicates what happens if the gradient starts or ends inside the bounds of the target rectangle.
Namespace: FMX.RS.SVGTypes
Delphi
|
type
TSVGGradientSpread = (gsNone,
gsPad,
gsReflect,
gsRepeat);
|
|
Name
|
Description
|
|
gsNone
|
Represents constant gsNone.
|
|
gsPad
|
use the terminal colors of the gradient to fill the remainder of the target region
|
|
gsReflect
|
reflect the gradient pattern start-to-end, end-to-start, start-to-end, etc. continuously until the target rectangle is filled
|
|
gsRepeat
|
repeat the gradient pattern start- to-end, start-to-end, start- to-end, etc. continuously until the target region is filled
|
Top
|