ClassLink
Clickable region that navigates to a destination, runs actions, or opens external resources when activated.
Definition
Namespace:Telerik.Windows.Documents.Fixed.Model.Annotations
Assembly:Telerik.Windows.Documents.Fixed.dll
Syntax:
public class Link : Annotation, IFixedDocumentElement, IStructuralElement
Inheritance: objectFixedDocumentElementBaseAnnotationLink
Implements:
Inherited Members
Constructors
Link(Action)
Initializes a new instance of the Link class.
Declaration
public Link(Action action)
Parameters
action
The first action in a collection of actions.
Link(Destination)
Initializes a new instance of the Link class.
Declaration
public Link(Destination destination)
Parameters
destination
The destination to navigate to when the link is activated.
Link(NamedDestination)
Initializes a new instance of the Link class.
Declaration
public Link(NamedDestination namedDestination)
Parameters
namedDestination
The named destination to navigate to when the link is activated.
Properties
Actions
Gets the ordered actions executed when the link is activated.
Declaration
public ActionCollection Actions { get; }
Property Value
The action sequence to run.
Destination
Gets the explicit destination the link navigates to when activated.
Declaration
public Destination Destination { get; }
Property Value
The target destination.
NamedDestination
Gets the named destination resolved at runtime, as an alternative to explicit coordinates.
Declaration
public NamedDestination NamedDestination { get; }
Property Value
The target named destination.
Type
Returns the link annotation type.
Declaration
public override AnnotationType Type { get; }
Property Value
The annotation type for links.
Overrides