i have a Indesign CS5 document.
In the middle is a table, which is filled by my java code, than it's pushed to our Indesign.
My code looks like this:
StringBuffer table = new StringBuffer();
int tableSize = 10;
table.append("<Tabelle xmlns:aid5='http://ns.adobe.com/AdobeInDesign/5.0/' xmlns:aid='http://ns.adobe.com/AdobeInDesign/4.0/' aid:table='table' aid:trows='" + tableSize +"' aid:tcols='5' aid5:tablestyle='anhang'>");
.....
table.append("<Zelle aid:table='cell' aid:crows='1' aid:ccols='1' aid5:cellstyle='tb-right' aid:ccolwidth='65.0'>" + count + "</Zelle>");
table.append("</Tabelle>");
Eveything is working, everything looks like it should, but: aid5:cellstyle='tb-right'
is not formating the cell flush right.
Where do i define the style for tb-right? And how it has to look like?