<avLst> (List of Shape Adjust Values)

This element specifies the adjust values that will be applied to the specified shape. An adjust value is simply a guide that has a value based formula specified. That is, no calculation takes place for an adjust value guide. Instead, this guide specifies a parameter value that is used for calculations within the shape guides.

example:

<a:xfrm>
  <a:off x="3200400" y="1600200"/>
  <a:ext cx="1705233" cy="679622"/>
</a:xfrm>
<a:custGeom>
  <a:avLst>
    <a:gd name="myGuide" fmla="val 2"/>
  </a:avLst> 
  <a:gdLst/>
  <a:ahLst/>
  <a:cxnLst/>
  <a:rect l="0" t="0" r="0" b="0"/>
  <a:pathLst>
    <a:path w="2" h="2">
      <a:moveTo>
        <a:pt x="0" y="myGuide"/>
      </a:moveTo>
      <a:lnTo>
        <a:pt x="2" y="myGuide"/>
      </a:lnTo>
      <a:lnTo>
        <a:pt x="1" y="0"/>
      </a:lnTo>
      <a:close/>
    </a:path>
  </a:pathLst>
</a:custGeom>

If however we change the adjust value to half that, namely 1. Then we see the entire bottom edge of the triangle move to now be placed along the vertical midpoint within the shape bounding box. This is because both of the bottom points in this triangle depend on this adjust value for their coordinate positions. The triangle and corresponding <DrawingML> shown below illustrate this point.

<a:avLst>
  <a:gd name="myGuide" fmla="val 1"/>
</a:avLst>

Parent Elements

<custGeom>5.1.11.8); <prstGeom>5.1.11.18); <prstTxWarp>5.1.11.19)

Child Elements

Subclause

<gd> (Shape Guide)

§5.1.11.11

The following XML Schema fragment defines the contents of this element:

<complexType name="CT_GeomGuideList">
	<sequence>
	<element name="gd" type="CT_GeomGuide" minOccurs="0" maxOccurs="unbounded"/>
	</sequence>
</complexType>