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 2010-03-10 08:38:18.210528-08 by jmgdoc in response to 12502
Re: How to extract the user field names from a document


With the latest release of OpenOffice::OODoc, the simplest way to print the names of the user-defined fields is shown below:
print $doc->objectName($_) . "\n" for $doc->getUserFields;

Direct Responses: Write a response