AdjustValueCollection

AdjustValueCollection

Overview

AdjustValueCollection is a class in Aspose.Slides FOSS for Java. Inherits from: IAdjustValueCollection.

Represents a collection of shape’s adjustments backed by an OOXML {@code <a:avLst>} element.

Properties

NameTypeAccessDescription
gdElementsList<Element>ReadReturns the {@code <a:gd>} child elements of the backing {@code <a:avLst>} element.

Methods

SignatureDescription
AdjustValueCollection()Creates an empty {@code AdjustValueCollection} with no backing element.
initInternal(avLstElement: Element, saveCallback: Runnable)AdjustValueCollectionInitializes this collection from the given {@code <a:avLst>} element.
getGdElements()List<Element>Returns the {@code <a:gd>} child elements of the backing {@code <a:avLst>} element.
size()intReturns the number of adjust values stored in the collection
get(index: int)IAdjustValueReturns the IAdjustValue at the specified zero‑based index
asICollection()List<IAdjustValue>Returns the adjust values as a List
asIEnumerable()Iterable<IAdjustValue>Returns the adjust values as an Iterable
iterator()Iterator<IAdjustValue>Returns an Iterator over the collection

See Also