Cell Properties

The complex type, CT_TableCellProperties, holds all the information that deals with the properties of a given cell. The cell properties contain a section for the different line properties (ln*), the cell fill properties, the 3-D properties, cell margin information (mar*), anchoring information (anchor and anchorCtr), a vertical text type, and finally an attribute which defines the behavior of horizontal text overflow (horzOverflow). As with many other types defined in this document, CT_TableCellProperties contains an element reserved for future extensibility. The complex type is defined in the following manner:

<xsd:complexType name="CT_TableCellProperties">
  <xsd:sequence>
    <xsd:element name="lnL" type="CT_LineProperties" minOccurs="0" 
      maxOccurs="1" />
    <xsd:element name="lnR" type="CT_LineProperties" minOccurs="0" 
      maxOccurs="1" />
    <xsd:element name="lnT" type="CT_LineProperties" minOccurs="0" 
      maxOccurs="1" />
    <xsd:element name="lnB" type="CT_LineProperties" minOccurs="0" 
      maxOccurs="1" />
    <xsd:element name="lnTlToBr" type="CT_LineProperties" 
      minOccurs="0" maxOccurs="1" />
    <xsd:element name="lnBlToTr" type="CT_LineProperties" 
      minOccurs="0" maxOccurs="1" />
    <xsd:element name="cell3D" type="CT_Cell3D" minOccurs="0" 
      maxOccurs="1" />
    <xsd:group ref="EG_FillProperties" minOccurs="0" maxOccurs="1" />
    <xsd:element name="extLst" type="CT_OfficeArtExtensionList" 
      minOccurs="0" maxOccurs="1" />
  </xsd:sequence>
  <xsd:attribute name="marL" type="ST_Coordinate32" use="optional" 
    default="91440" />
  <xsd:attribute name="marR" type="ST_Coordinate32" use="optional" 
    default="91440" />
  <xsd:attribute name="marT" type="ST_Coordinate32" use="optional" 
    default="45720" />
  <xsd:attribute name="marB" type="ST_Coordinate32" use="optional" 
    default="45720" />
  <xsd:attribute name="vert" type="ST_TextVerticalType" use="optional" 
    default="horz" />
  <xsd:attribute name="anchor" type="ST_TextAnchoringType"
    use="optional" default="t" />
  <xsd:attribute name="anchorCtr" type="xsd:boolean" use="optional" 
    default="false" />
  <xsd:attribute name="horzOverflow" type="ST_TextHorzOverflowType" 
    use="optional" default="clip" />
</xsd:complexType>