|
I'm doing
my $archive = odfContainer($testfile, create => 'text');
my $doc = odfConnector
(
container => $archive,
part => 'content',
readable_XML => 'true'
)
my $table = $doc->appendTable("foobar", 4, 2);
etc
How do I insert New Page after that table? |