GradientStopCollection

GradientStopCollection — Aspose.Slides FOSS Java API Reference

GradientStopCollection — Represents a collection of gradient stops. Inherits from: IGradientStopCollection, Iterable<IGradientStop>.

Package: org.aspose.slides.foss


Methods

MethodReturnsDescription
get(int index)IGradientStop
size()int
add(double position, Color color)IGradientStop
add(double position, PresetColor presetColor)IGradientStop
add(double position, SchemeColor schemeColor)IGradientStop
insert(int index, double position, Color color)void
insert(int index, double position, PresetColor presetColor)void
insert(int index, double position, SchemeColor schemeColor)void
removeAt(int index)void
clear()void
asICollection()List<IGradientStop>
asIEnumerable()Iterable<IGradientStop>
iterator()Iterator<IGradientStop>Returns an iterator over the gradient stops in this collection.

See Also