Re: [api-dev] Table width

2005-03-21 Thread Cristian Fonti
till busch ha scritto: hi christian, On Friday 18 March 2005 17:06, Cristian Fonti wrote: I try to set the properties also after that before, but nothing... I have another problems: i want to change the column width values, and i suppose that he only way to change them is use Te

Re: [api-dev] Table width

2005-03-18 Thread till busch
hi christian, On Friday 18 March 2005 17:06, Cristian Fonti wrote: > I try to set the properties also after that before, but nothing... > I have another problems: i want to change the column width values, and i > suppose that he only way to change them is use TextColumnSeparator. > But,the value t

Re: [api-dev] Table width

2005-03-18 Thread Steffen Grund
Hi there. Right, it's the property "TableColumnSeparators". Please see chapter "7.3.4 Tables" of the Developer's Guide: http://api.openoffice.org/docs/DevelopersGuide/Text/Text.htm#1+3+4+Tables The TextColumnSeparator describes the distance between the column separator and the left margin of the

Re: [api-dev] Table width

2005-03-18 Thread Cristian Fonti
I try to set the properties also after that before, but nothing... I have another problems: i want to change the column width values, and i suppose that he only way to change them is use TextColumnSeparator. But,the value that you must insert, what is? is a formula of what?? is the distance from

Re: [api-dev] Table width

2005-03-18 Thread Stephan Wunderlich
Hi Cristian, This is my Java code: Object table = xWriterFactory.createInstance("com.sun.star.text.TextTable"); XTextContent xTextContentTable = (XTextContent)UnoRuntime.queryInterface(XTextContent.class, table); XPropertySet xTableProps=(XPropertySet)UnoRuntime.queryInterface(XP

Re: [api-dev] Table width

2005-03-18 Thread Cristian Fonti
Nothing to do... i try your code but nothing, the table remain into the page margin... (if i use TextFrame all is ok, but it create into the Frame a paragraph break after the table, pratically a blank line after the table, eventually, i can remove it??)... This is my Java code: Object table =

Re: [api-dev] Table width

2005-03-18 Thread Stephan Wunderlich
Hi Cristian, i have a question: there is a way to set the width of a table (i want to exceed the margin of the page)?? I try with the property Width but nothing Thanks to all lets say you have a XTextTable in your document, then atable = thisComponent.TextTables(0) atable.H

Re: [api-dev] Table width

2005-03-18 Thread Bernard Marcelly
Le 2005-03-18 11:50, Cristian Fonti a écrit : Hi to all, i have a question: there is a way to set the width of a table (i want to exceed the margin of the page)?? I try with the property Width but nothing Thanks to all Did you try to do this manually ? I did, it is impossible to insert a tabl

[api-dev] Table width

2005-03-18 Thread Cristian Fonti
Hi to all, i have a question: there is a way to set the width of a table (i want to exceed the margin of the page)?? I try with the property Width but nothing Thanks to all - To unsubscribe, e-mail: [EMAIL PROTECTED] For addi