<fillRect>
(Fill Rectangle)
This element specifies a fill rectangle. When stretching of an image is specified, a source rectangle, srcRect, is scaled to fit the specified fill rectangle.
Each edge of the fill rectangle is defined by a percentage offset from the corresponding edge of the shape's bounding box. A positive percentage specifies an inset, while a negative percentage specifies an outset. For example, a left offset of 25% specifies that the left edge of the fill rectangle is located to the right of the bounding box's left edge by an amount equal to 25% of the bounding box's width.
<a:blipFill> <a:blip r:embed="rId2"/> <a:stretch> <a:fillRect b="10000" r="25000"/> </a:stretch> </a:blipFill>
The above image is stretched to fill the entire rectangle except for the bottom 10% and rightmost 25%.
Parent Elements |
---|
|
Attributes |
Description |
---|---|
|
Specifies the bottom edge of the rectangle. The possible values for this attribute are defined by the ST_Percentage simple type (§5.1.12.41). |
|
Specifies the left edge of the rectangle. The possible values for this attribute are defined by the ST_Percentage simple type (§5.1.12.41). |
|
Specifies the right edge of the rectangle. The possible values for this attribute are defined by the ST_Percentage simple type (§5.1.12.41). |
|
Specifies the top edge of the rectangle. The possible values for this attribute are defined by the ST_Percentage simple type (§5.1.12.41). |
The following XML Schema fragment defines the contents of this element:
<complexType name="CT_RelativeRect">
<attribute name="l" type="ST_Percentage" use="optional" default="0"/>
<attribute name="t" type="ST_Percentage" use="optional" default="0"/>
<attribute name="r" type="ST_Percentage" use="optional" default="0"/>
<attribute name="b" type="ST_Percentage" use="optional" default="0"/>
</complexType>