Hi Adriam,

I think you are on the correct mailing list to get your answer.

However, this is an English-writing mailing list.
Writing in any other language than English will more than likely bring no
answer.

Jean-Noël

PS: I do not have the answer to your question.



2013/3/7 Adriam Delgado Rivero <adriv...@estudiantes.uci.cu>

>
>
> Utilizando UNO API para java y cargo una plantilla que contiene una tabla
> ....
>
> Intento copiar dicha tabla  en la  siguiente hoja (propiedades también)
> para crear una nueva.... y no encuentro como, este es el código donde
> obtengo la tabla y sus propiedades.
>
> PD. He escrito muchas veces a  us...@global.libreoffice.org pero nadie
> responde...
>  Saludos
>
>    // 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);
>       }
>
_______________________________________________
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice
  • Re: hola Adriam Delgado Rivero
    • Re: hola Jean-Noël Rouvignac
      • Hello Adriam Delgado Rivero
        • Hello Adriam Delgado Rivero

Reply via email to