<mcJc> (Matrix Column Justification)

This element specifies the justification of a matrix column (or group of matrix columns) <mc>. When this element is omitted, the column is centered. The matrix below has three columns. The leftmost column is left-justified, the rightmost column is right-justified, and the center column is centered:

example:
<m:m>
  <m:mPr>
    <m:mcs>
      <m:mc>
        <m:mcPr>
          <m:mcJc  m:val="center"/>
          <m:count m:val="2"/>
        </m:mcPr>
      </m:mc>
    </m:mcs>
  </m:mPr>
  <m:mr>
    <m:e>
      <m:r>
        <m:rPr>
          <m:scr  m:val="roman"/>
          <m:sty  m:val="p"/>
        </m:rPr>
        <m:t>1</m:t>
      </m:r >
    </m:e>
    <m:e>
      <m:r>
        <m:rPr>
          <m:scr  m:val="roman"/>
          <m:sty  m:val="p"/>
        </m:rPr>
        <m:t>2</m:t>
      </m:r >
    </m:e>
  </m:mr>
  <m:mr>
    <m:e>
      <m:r>
        <m:rPr>
          <m:scr  m:val="roman"/>
          <m:sty  m:val="p"/>
        </m:rPr>
        <m:t>3</m:t>
      </m:r >
    </m:e>
    <m:e>
      <m:r>
        <m:rPr>
          <m:scr  m:val="roman"/>
          <m:sty  m:val="p"/>
        </m:rPr>
        <m:t>4</m:t>
      </m:r >
    </m:e>
  </m:mr>
</m:m>

Parent Elements

<mcPr>7.1.2.66)

Attributes

Description

<val> (Value)

Specifies the horizontal alignment of the parent element. Possible values are left, right, and center.
example: :
<m:mcPr>
  <m:mcJc  m:val="center"/>
  <m:count m:val="2"/>
</m:mcPr>

The possible values for this attribute are defined by the ST_XAlign simple type (§7.1.3.18).

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

<complexType name="CT_XAlign">
	<attribute name="val" type="ST_XAlign" use="required"/>
</complexType>