[api-dev] Re: [Spam] Re: [api-dev] python: create table without Borders in .odt

2008-05-28 Thread Fernand Vanrie
Martin Klar wrote: Alexandro Colorado schrieb: On Tue, 27 May 2008 17:16:06 -0500, Martin Klar [EMAIL PROTECTED] wrote: Alexandro Colorado wrote: Have u import the Table interface? How do I do that? How to use the Table Interface? Sorry, I'm quite new to OO/python. Martin Well if you

Re: [api-dev] python: create table without Borders in .odt

2008-05-28 Thread Martin Klar
Ariel Constenla-Haile escribió: Hi Martin, Martin Klar escribió: Hi there, I can't create a table without borders, i.e. with borders of zero width. it's not so difficult, see how structs are mapped to Python in http://udk.openoffice.org/python/python-bridge.html#mapping Thank you, that

[api-dev] python: create table without Borders in .odt

2008-05-27 Thread Martin Klar
Hi there, I can't create a table without borders, i.e. with borders of zero width. What I've done: table = doc.createInstance( com.sun.star.text.TextTable ) table.initialize( 3,2) text.insertTextContent( cursor, table, 0 ) I found this

Re: [api-dev] python: create table without Borders in .odt

2008-05-27 Thread Martin Klar
Alexandro Colorado schrieb: On Tue, 27 May 2008 15:23:27 -0500, Martin Klar [EMAIL PROTECTED] wrote: Hi there, I can't create a table without borders, i.e. with borders of zero width. Can you provide more information? Have u import the Table interface.where you able to get the table in

Re: [api-dev] python: create table without Borders in .odt

2008-05-27 Thread Martin Klar
Alexandro Colorado wrote: Have u import the Table interface? How do I do that? How to use the Table Interface? Sorry, I'm quite new to OO/python. Martin - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands,

Re: [api-dev] python: create table without Borders in .odt

2008-05-27 Thread Ariel Constenla-Haile
Hi Martin, Martin Klar escribió: Hi there, I can't create a table without borders, i.e. with borders of zero width. What I've done: table = doc.createInstance( com.sun.star.text.TextTable ) table.initialize( 3,2) text.insertTextContent( cursor, table, 0 ) I found this

Re: [api-dev] python: create table without Borders in .odt

2008-05-27 Thread Martin Klar
Alexandro Colorado schrieb: On Tue, 27 May 2008 17:16:06 -0500, Martin Klar [EMAIL PROTECTED] wrote: Alexandro Colorado wrote: Have u import the Table interface? How do I do that? How to use the Table Interface? Sorry, I'm quite new to OO/python. Martin Well if you got the table