AdjustValue

Overview

AdjustValue is a class in Aspose.Slides FOSS for Java. Inherits from: IAdjustValue.

Represents a single geometry adjustment value backed by an OOXML {@code <a:gd>} element.

This class provides 8 methods for working with AdjustValue objects in Java programs. Available methods include: AdjustValue, getAngleValue, getName, getRawValue, initInternal, setAngleValue, setRawValue. All public members are accessible to any Java application after installing the Aspose.Slides FOSS for Java package. Properties: angleValue, name, rawValue.

Properties

NameTypeAccessDescription
nameStringReadGets the name.
rawValuelongReadGets the raw value.
angleValuedoubleReadGets the angle value.

Methods

SignatureDescription
AdjustValue()Creates an empty {@code AdjustValue} with no backing element.
AdjustValue(gdElement: Element, saveCallback: Runnable)Creates an AdjustValue backed by the given {@code <a:gd>} element.
initInternal(gdElement: Element, saveCallback: Runnable)AdjustValueInitializes this adjust value from the given {@code <a:gd>} element.
getName()StringReturns the name.
getRawValue()longReturns the raw value.
setRawValue(value: long)Sets the raw value value.
getAngleValue()doubleReturns the angle value.
setAngleValue(value: double)Sets the angle value value.

See Also