Hauptinhalt

mlreportgen.dom.ExternalLink Class

Namespace: mlreportgen.dom

Hyperlink to a location outside of document

Description

Use an object of the mlreportgen.dom.ExternalLink class to define a hyperlink to a location outside of the document.

To see what DOM objects you can append an mlreportgen.dom.ExternalLink object to, see Append mlreportgen.dom.ExternalLink object to DOM class object.

The mlreportgen.dom.ExternalLink class is a handle class.

Creation

Description

externalLinkObj = ExternalLink(targetName,linkText) creates a hyperlink to the specified target and having the specified link text. This constructor creates a mlreportgen.dom.Text object to hold the link text.

externalLinkObj = ExternalLink(targetName,linkText,linkTextStyleName) creates a hyperlink with the specified link text and style name.

externalLinkObj = ExternalLink(targetName,domObj) creates a hyperlink to the specified target using link text from the specified mlreportgen.dom.Text, mlreportgen.dom.Number, or mlreportgen.dom.CharEntity object.

example

Input Arguments

expand all

The link target of the external link, specified as either a character vector for a URL or as the value in the Name property of an mlreportgen.dom.LinkTarget object.

The text to use for the link text, specified as a character vector or a string scalar.

Data Types: char | string

Name of style to use for the link text, specified as a character vector or a string scalar.

Data Types: char | string

Object containing link text to the external target, specified as one of the following DOM objects:

Properties

expand all

Target URL of link, specified as a character vector or a string scalar.

Attributes:

GetAccess
public
SetAccess
public
NonCopyable
true

Data Types: char | string

The window in which the target will be opened, specified as a character vector or string scalar.

Possible values are:

  • "samewindow" - (default) opens a target in the same window

  • "newwindow" - opens a target in a new window

Note

This property applies only to HTML output-type reports.

Attributes:

GetAccess
public
SetAccess
public
NonCopyable
true

Data Types: char | string

Name of stylesheet-defined style, specified as a character vector or string scalar. The style name is the name of a style specified in the style sheet of the document or document part to which this element is appended. The specified style defines the appearance of this element in the output document unless the formats specified by the Style property of this element override it. To learn more about using style sheets, see Use Style Sheet Styles.

Note

Microsoft® Word reports ignore style names that are not defined in the document template. For more information on Microsoft Word templates, see Templates for DOM API Report Programs.

Attributes:

GetAccess
public
SetAccess
public
NonCopyable
true

Data Types: char | string

Format specification for this document element object, specified as a cell array of DOM format objects. The formats specified by this property override corresponding formats specified by the StyleName property of this element. Formats that do not apply to this document element object are ignored.

Attributes:

GetAccess
public
SetAccess
public
NonCopyable
true

Data Types: cell

Custom attributes of the document element, specified as an array of mlreportgen.dom.CustomAttribute objects. The custom attributes must be supported by the output format of the document element to which this object is appended.

Attributes:

GetAccess
public
SetAccess
public
NonCopyable
true

Parent of this object, specified as a document element object. A document element must have only one parent.

Attributes:

GetAccess
public
SetAccess
private
NonCopyable
true

Children of this object, specified as an array of document element objects. This property contains the document element objects appended using the append method.

Attributes:

GetAccess
public
SetAccess
private
NonCopyable
true

Tag, specified as a character vector or string scalar. The DOM API generates a session-unique tag as part of the creation of this object. The generated tag has the form CLASS:ID, where CLASS is the object class and ID is the value of the Id property of the object. Use this value to help identify where an issue occurs during document generation.

Attributes:

GetAccess
public
SetAccess
public
NonCopyable
true

Data Types: char | string

Object identifier, specified as a character vector or string scalar. The DOM API generates a session-unique identifier when it creates the document element object.

Attributes:

GetAccess
public
SetAccess
public
NonCopyable
true

Data Types: char | string

Methods

expand all

Examples

collapse all

import mlreportgen.dom.*
d = Document('mydoc');

append(d,ExternalLink('https://www.mathworks.com/','MathWorks'));

close(d);
rptview(d.OutputPath);

More About

expand all

Tips

  • When you append mlreportgen.dom.ExternalLink objects in documents, the object content appends differently depending on the document format. In HTML documents, the content appends in the same line. In PDF and DOCX documents, the content appends in separate lines. To append the content in the same line, create a mlreportgen.dom.Paragraph object, append the content to the paragraph object by using the append method, then append the paragraph object to the document object.

Version History

Introduced in R2014b