Tagged Questions
3
votes
2answers
569 views
Copy a whole ODT (Openoffice Writer) document section to other document with Openoffice Java API (UNO API)
I need to use the OpenOffice Java API to copy a document section and paste it over another document section. So far I have managed to copy the text of the section of the source document and paste it ...
1
vote
1answer
116 views
Programmatic Search and Replace in an OpenOffice writer document from Java?
Is there a way to programmatically search and replace text in an OpenOffice Writer document using the Java UNO API?
I'm looking to search and replace particular text with mail merge query fields.
1
vote
3answers
1k views
OpenOffice with .NET: how to iterate throught all paragraphs and read text
How to iterate through all paragraphs in OpenOffice Writer document and output text.
I have Java examples, but don't know how to convert code to C#.
Java example could be found here: ...
1
vote
1answer
739 views
In OpenOffice, how do I check if my XComponentContext has been closed?
I have a small application that generates three different template documents in OOo Writer. When one of the three "generate" buttons is clicked, this is part of the code that is executed (in C#):
// ...
1
vote
1answer
813 views
How do you set the text direction for a TextTable Cell in OpenOffice?
I want to set the text direction for some cells in a TextTable so that they are vertical (i.e., the text is landscape instead of portrait).
You can do this in Writer by selecting the cell(s), and ...
0
votes
1answer
202 views
UNO classes to VB .NET
I've found some samples of OpenOffice UNO dll to try out with VB.NET, but I'm still having issues with it:
It doesn't want to compile with any version of .NET Framework over 2.0 (Which is at least 7 ...
0
votes
1answer
466 views
OpenOffice iterating through TextTable detect merged and split cells (calculate colspan and rowspan)
I am using OpenOffice uno api to iterate through all text in writer document. To iterate over text tables currently I am using XTextTable interface getCellNames() method. How I could detect merged and ...
0
votes
1answer
433 views
How do I set the properties for an XTextTable in OpenOffice.org uno using C#?
Discussion on OOoForum.org
In python, I can do something like this:
table.BreakType = PAGE_BEFORE
table.HoriOrient = 0
table.RightMargin = 6.93 * 2540 - table_width
In C#, I can't find a way to ...
0
votes
1answer
693 views
How do I create an XTextTable in OpenOffice.org uno using C#?
Discussion on OOoForum.org
In python, using pyuno, I can do it like this:
table = self.model.createInstance("com.sun.star.text.TextTable")
This doesn't seem to work in C#. Here is my test code (I ...