how does the height of table row calculator?

  • Thread starter Thread starter zhitingxie
  • Start date Start date
Z

zhitingxie

in ppt2007,I insert a table to one slide.Then I choose a tablecell and
split it to three or more rows.Save the ppt as 2007.pptx,for
example.When I unzip the file,2007.pptx,and open one xml file,whose
name is slide.xml.We can get the table information in slide.xml.But
the height of every row doesn't right,not the avarage value.why?
 
I'm not sure what the problem is:

<a:tbl>
<a:tblPr firstRow="1" bandRow="1">
<a:tableStyleId>{5C22544A-7EE6-4342-B048-85BDC9FD1C3A}</a:tableStyleId>
</a:tblPr>
<a:tblGrid>
<a:gridCol w="4114800" />
<a:gridCol w="4114800" />
</a:tblGrid>
<a:tr h="370840">
..........
</a:tr>

I can see the row height is 370840. What are you missing?


--
Regards,
Shyam Pillai

Animation Carbon: Copy/Paste/Share animation libraries.
www.animationcarbon.com
 
I'm not sure what the problem is:

<a:tbl>
<a:tblPr firstRow="1" bandRow="1">
<a:tableStyleId>{5C22544A-7EE6-4342-B048-85BDC9FD1C3A}</a:tableStyleId>
</a:tblPr>
<a:tblGrid>
<a:gridCol w="4114800" />
<a:gridCol w="4114800" />
</a:tblGrid>
<a:tr h="370840">
.........
</a:tr>

I can see the row height is 370840. What are you missing?

--
Regards,
Shyam Pillai

Animation Carbon: Copy/Paste/Share animation libraries.www.animationcarbon.com

for example,I insert a table which contains one cell only into a
slide.Then split the cell into 6 rows.The contents in slide.xml is :
........
<a:tr h="0">
<a:tr h="303953">
<a:tr h="242147">
<a:tr h="180340">
<a:tr h="118533">
<a:tr h="0">
.......

if I split it into 3 rows,the value is :

<a:tr h="123613">
<a:tr h="242147">
<a:tr h="123613">
........
how does it get the height of the rows?
 
Back
Top