Why is this table centered?

C

Colbert Zhou [MSFT]

Hi Dave,

The table defined in OpenXML as,
------------------------------------
<w:tbl>
- <w:tblPr>
<w:tblStyle w:val="TableGrid" />
<w:tblpPr w:leftFromText="187" w:rightFromText="187" w:vertAnchor="text"
w:horzAnchor="page" w:tblpXSpec="center" w:tblpY="15" />
<w:tblW w:w="10848" w:type="dxa" />
.......
------------------------------------
The table in Office is floating. w:tblpXSpec="center" means the relative
horizontal position for that floating table is center. If tblpXSpec is not
specified. The tblpX attribute will determine the absolute horizontal
position for the floating table.

http://openiso.org/Ecma/376/Part4/2.4.54


Regards,
Colbert Zhou
Microsoft Online Support Team
 
D

David Thielen

Hi Dave,

The table defined in OpenXML as,
------------------------------------
<w:tbl>
- <w:tblPr>
<w:tblStyle w:val="TableGrid" />
<w:tblpPr w:leftFromText="187" w:rightFromText="187" w:vertAnchor="text"
w:horzAnchor="page" w:tblpXSpec="center" w:tblpY="15" />
<w:tblW w:w="10848" w:type="dxa" />
......
------------------------------------
The table in Office is floating. w:tblpXSpec="center" means the relative
horizontal position for that floating table is center. If tblpXSpec is not
specified. The tblpX attribute will determine the absolute horizontal
position for the floating table.

Apparently I'm blind. I looked and looked before and did not see the
w:tblpXSpec="center" - yet there it is.

thank you

david@[email protected]
Windward Reports -- http://www.WindwardReports.com
me -- http://dave.thielen.com

Cubicle Wars - http://www.windwardreports.com/film.htm
 
Top