I wanted to build an awesome place for people to discuss module specific issues, but I don't have any more time for this, and there are much better places to discuss Perl-related issues. I'd recommend asking your question on Stack Overflow or on Perl Monks.
If you are looking for a Perl tutorial or Perl-related news, I hope these links will serve you well.
Posted on 2005-09-22 09:59:17-07 by jmgdoc in response to 1020
Re: Using tables (sections) from oowriter templates

When you have a table handle (previously returned by getTable for example) you can get the table name using the generic getAttribute method, knowing that the name attribute is 'table:name'. Ex:
my $t = $doc->getTable($number); my $name = $doc->getAttribute($t, 'table:name');

In a future release, I'll probably introduce a more smart tableName read/write accessor (renameTable is already available).
Direct Responses: 1254 | Write a response