User`s guide
12 Classes – Alphabetical List
12-204
Methods
Method Purpose
append Append content to link target.
clone
Use LinkTarget.clone in a similar way
to how you use Paragraph.clone.
Copy link target.
Examples
Link to Top of a Document
Define a link target at the top of the report and add an internal link to that target. In an
actual report, links to this target would appear further down in the report.
import mlreportgen.dom.*
d = Document('mydoc');
append(d,LinkTarget('home'));
append(d,InternalLink('home','Go to Top'));
close(d);
rptview('mydoc', 'html');
• “Create Links”
See Also
mlreportgen.dom.ExternalLink | mlreportgen.dom.ImageArea |
mlreportgen.dom.InternalLink