GoToAction
Navigate to a destination within the current document, either by explicit coordinates or a named destination.
Definition
Namespace:Telerik.Windows.Documents.Fixed.Model.Actions
Assembly:Telerik.Windows.Documents.Fixed.dll
Syntax:
public class GoToAction : Action
Inheritance: objectActionGoToAction
Derived Classes:
Constructors
Create an empty action that will navigate to a destination when configured.
public GoToAction()
Create an action that targets a specific destination in the current document.
public GoToAction(Destination destination)
The destination for the action.
Create an action that targets a specific named destination.
public GoToAction(NamedDestination namedDestination)
The named destination for the action.
Properties
Gets or sets the explicit target within the document to navigate to when executed.
public Destination Destination { get; set; }
The destination object that defines the target location within the document.
Gets or sets the named destination resolved at runtime to a location in the document.
public NamedDestination NamedDestination { get; set; }
The named destination object that references a location by name rather than explicit coordinates.