| View previous topic :: View next topic |
| Author |
Message |
ranges22 General User

Joined: 04 Oct 2004 Posts: 26
|
Posted: Wed Dec 22, 2004 9:07 am Post subject: Repeat table header property |
|
|
Hello ,
I'd like to know the table property that I should use to allow Table header to be repeated whenver the table in a document extends over more than one page.
How do i set that property thru coding? (my code is in Java)
Thank you.
ranges22 |
|
| Back to top |
|
 |
migue General User


Joined: 06 Oct 2004 Posts: 46
|
Posted: Wed Dec 22, 2004 9:21 am Post subject: |
|
|
Try this:
| Code: |
XPropertySet props = (XPropertySet) UnoRuntime.queryInterface(
XPropertySet.class, xTextTable);
props.setPropertyValue("RepeatHeadline", new Boolean(true));
|
|
|
| Back to top |
|
 |
ranges22 General User

Joined: 04 Oct 2004 Posts: 26
|
Posted: Thu Dec 23, 2004 5:37 am Post subject: |
|
|
| Thanx will check this today. |
|
| Back to top |
|
 |
Severissimus General User

Joined: 31 Mar 2008 Posts: 11
|
Posted: Tue Jul 08, 2008 7:17 am Post subject: |
|
|
| I had the same question. Now i've tried your solution and it works. Thank you. |
|
| Back to top |
|
 |
AhmetCakir General User

Joined: 02 Jul 2012 Posts: 11
|
Posted: Mon Jul 02, 2012 8:06 am Post subject: |
|
|
Hi,
First of all thank you for your messages.
I did have the same problem and I used to the same method to overcome it and it worked very well.
However I do have another question
With this way, I can only use the first row as the heading part. Is there a way that I could use several rows as heading title ?
Thank you for your answer |
|
| Back to top |
|
 |
|