[Table of Contents] [docx version]
Error! No text of specified style in document.
graphicFrame (Graphic Frame)
This element specifies the existence of a graphics frame. This frame contains a graphic that was generated by an external source and needs a container in which to be displayed on the slide surface.
Parent Elements |
absSizeAnchor (§5.8.2.1); grpSp (§5.8.2.13); relSizeAnchor (§5.8.2.21) |
Child Elements |
Subclause |
graphic (Graphic Object) |
§5.1.2.1.16 |
nvGraphicFramePr (Non-Visual Graphic Frame Properties) |
§5.8.2.16 |
xfrm (Graphic Frame Transform) |
§5.8.2.28 |
Attributes |
Description |
fPublished (Publish To Server) |
Specifies whether the shape shall be published with the worksheet when sent to the spreadsheet server. This is for use when interfacing with a document server.
[Example: Consider the following shape that will not be published with the worksheet when it is published back on the spreadsheet server. <cdr:relSizeAnchor> .. <cdr:sp fPublished="0"> .. </cdr:sp> .. </cdr:relSizeAnchor> end example]
The possible values for this attribute are defined by the XML Schema boolean datatype. |
macro (Reference to Custom Function) |
This element specifies the custom function associated with the chart. [Example: A macro script, add-in function, and so on. end example]
The format of this string shall be application-defined, and should be ignored if not understood.
[Example:
<cdr:... macro="DoWork()" >
end example]
The possible values for this attribute are defined by the XML Schema string datatype. |
The following XML Schema fragment defines the contents of this element:
<complexType name="CT_GraphicFrame">
<sequence>
<element name="nvGraphicFramePr" type="CT_GraphicFrameNonVisual" minOccurs="1" maxOccurs="1"/>
<element name="xfrm" type="a:CT_Transform2D" minOccurs="1" maxOccurs="1"/>
<element ref="a:graphic" minOccurs="1" maxOccurs="1"/>
</sequence>
<attribute name="macro" type="xsd:string" use="optional"/>
<attribute name="fPublished" type="xsd:boolean" use="optional" default="false"/>
</complexType>