Cell 3D

The complex type CT_Cell3D defines all of the 3-D properties that an individual cell can hold. In the case of a table, these 3-D properties can be a bevel along with a material and a light rig for the cell. More explanation of these three pieces of a CT_Cell3D can be found in the document on 3-D. These properties are applied on a per-cell basis, rather than to the table as a whole. A CT_Cell3D is defined in the following manner:

<xsd:complexType name="CT_Cell3D">
  <xsd:sequence>
    <xsd:element name="bevel" type="CT_Bevel" minOccurs="1"
      maxOccurs="1" />
    <xsd:element name="lightRig" type="CT_LightRig" minOccurs="0"
      maxOccurs="1" />
    <xsd:element name="ext" type="CT_OfficeArtExtension" minOccurs="0"
      maxOccurs="1" />
  </xsd:sequence>
  <xsd:attribute name="prstMaterial" type="ST_PresetMaterialType"
    use="optional" default="plastic" />
</xsd:complexType>

This complex type also holds a CT_OfficeArtExtension. This complex type is used for future extensibility and will be seen elsewhere throughout the tables area.