The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Document::OOXML::Document - Base class for the different OOXML document types

VERSION

version 0.180750

SYNOPSIS

    package Document::OOXML::Document::SomeType;
    use Moose;
    extends 'Document::OOXML::Document';

    # implement document-type specifics here

METHODS

get_part($part_name)

Retrieve a (related) document part by name.

get_rels_for_part($part_name)

Retrieve a Document::OOXML::Rels object representing the ".rels" file for the specified part of the document.

.rels files contain a mapping of filenames/types to

save_to_file($filename)

Saves the document to file named $filename.

SEE ALSO

AUTHOR

Martijn van de Streek <martijn@vandestreek.net>

COPYRIGHT AND LICENSE

This software is copyright (c) 2018 by Martijn van de Streek.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.