User`s guide
12 Classes – Alphabetical List
12-116
A session-unique ID is generated as part of document element creation. The generated
tag has the form CLASS:ID, where CLASS is the class of the element and ID is the value
of the Id property of the object. You can specify a tag to replace the generated tag.
Specify your own tag value, for example, to make it easier to identify where an issue
occurred during document generation.
Target — Target URL of link
string
This read-only property displays the URL of the link target of this hyperlink.
Methods
Method Purpose
append Append text or a Text, Image, or
CustomElement object.
clone
Use ExternalLink.clone in a similar
way to how you use Paragraph.clone.
Copy the external link
Examples
Add an External Link
import mlreportgen.dom.*
d = Document('mydoc');
append(d,ExternalLink('http://www.mathworks.com/','MathWorks'));
close(d);
rptview('mydoc','html');
• “Create Links”
See Also
mlreportgen.dom.InternalLink | mlreportgen.dom.LinkTarget