Skip to main content
dublove
Legend
May 30, 2024
Question

There is no "AID: Crowheight"attribute in the XML table?

  • May 30, 2024
  • 1 reply
  • 149 views
There is no "AID: Crowheight" attribute in the XML table?
How to express the height of the cell?

 

aid:theader="" aid:crows="1" aid:ccols="1" aid:ccolwidth="134" aid:crowheight:"120">Africa</Cell>

 

 
 
This topic has been closed for replies.

1 reply

Community Expert
June 1, 2024

I think yo might need something like this

 

<Table aid:table="table" aid:trows="3" aid:tcols="3" aid:theadrows="1">
    <Row aid:theight="120">
        <Cell aid:ccolspan="1">Africa</Cell>
        <Cell aid:ccolspan="1">Asia</Cell>
        <Cell aid:ccolspan="1">Europe</Cell>
    </Row>
    <Row aid:theight="120">
        <Cell aid:ccolspan="1">North America</Cell>
        <Cell aid:ccolspan="1">South America</Cell>
        <Cell aid:ccolspan="1">Australia</Cell>
    </Row>
    <Row aid:theight="120">
        <Cell aid:ccolspan="1">Antarctica</Cell>
        <Cell aid:ccolspan="1"></Cell>
        <Cell aid:ccolspan="1"></Cell>
    </Row>
</Table>