Date: prev next · Thread: first prev next last
2013 Archives by date, by thread · List index


Hi :)
Thanks, you too :D  I dug around on the main website and found links on this page
http://www.libreoffice.org/developers-2/

Regards from 
Tom :)  





________________________________
From: Supiramani Supiramani <hisupiramani@hotmail.com>
To: tomdavies04@yahoo.co.uk; adrivero@estudiantes.uci.cu; users@global.libreoffice.org 
Sent: Monday, 29 April 2013, 4:10
Subject: RE: [libreoffice-users] Using UNO API


Thanks Tom


Your enthusiasism is terrific

You haven't given up and that is great

Could you help me with the simple link or subscribe address for the Dev list ?

Regards


Date: Sun, 28 Apr 2013 20:11:05 +0100
From: tomdavies04@yahoo.co.uk
Subject: Re: [libreoffice-users] Using UNO API
To: adrivero@estudiantes.uci.cu; users@global.libreoffice.org

Hi :)
You might have more luck on the Devs Mailing List, or their IIRC channel (whatever iirc is).  


Andrew Pitonyak wrote an excellent guide for how to write macros.  It costs a little bit but 
apparently it is well worth it
https://wiki.documentfoundation.org/Documentation/Other_Documentation_and_Resources#Programmers

This list does sometimes help with macros but it just depends on who happens to be around at the 
time.  Sorry you haven't had responses so far.  

Apols and regards from 

Tom :)  






________________________________
From: Adriam Delgado Rivero <adrivero@estudiantes.uci.cu>
To: libre <users@global.libreoffice.org> 
Sent: Sunday, 28 April 2013, 1:25
Subject: [libreoffice-users] Using UNO API









Using UNO API for java and charge a template that contains a table .... 

I try to copy that table on the next page (I need copy also property ) to create a new .... and 
I find as 

// first query the XTextTablesSupplier interface from our document 
XTextTablesSupplier xTablesSupplier = (XTextTablesSupplier) UnoRuntime.queryInterface( 
XTextTablesSupplier.class, xWriterComponent); 
// get the tables collection 
XNameAccess xNamedTables = xTablesSupplier.getTextTables(); 

// now query the XIndexAccess from the tables collection 
XIndexAccess xIndexedTables = (XIndexAccess) UnoRuntime.queryInterface( 
XIndexAccess.class, xNamedTables); 
// we need properties 
xTableProps = null; 

// get the tables 
for (int i = 0; i < xIndexedTables.getCount(); i++) { 
table = xIndexedTables.getByIndex(i); 
// the properties, please! 


xTableProps = (XPropertySet) UnoRuntime.queryInterface( 
XPropertySet.class, table); 
this.xTable = (XTextTable) UnoRuntime.queryInterface( 
XTextTable.class, table); 
} 




http://www.uci.cu

-- 
For unsubscribe instructions e-mail to: users+help@global.libreoffice.org
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://listarchives.libreoffice.org/global/users/
All messages sent to this list will be publicly archived and cannot be deleted

                          
-- 
For unsubscribe instructions e-mail to: users+help@global.libreoffice.org
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://listarchives.libreoffice.org/global/users/
All messages sent to this list will be publicly archived and cannot be deleted



-- 
For unsubscribe instructions e-mail to: users+help@global.libreoffice.org
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://listarchives.libreoffice.org/global/users/
All messages sent to this list will be publicly archived and cannot be deleted

Context


Privacy Policy | Impressum (Legal Info) | Copyright information: Unless otherwise specified, all text and images on this website are licensed under the Creative Commons Attribution-Share Alike 3.0 License. This does not include the source code of LibreOffice, which is licensed under the Mozilla Public License (MPLv2). "LibreOffice" and "The Document Foundation" are registered trademarks of their corresponding registered owners or are in actual use as trademarks in one or more countries. Their respective logos and icons are also subject to international copyright laws. Use thereof is explained in our trademark policy.