ClassGoToAction
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
GoToAction()
Create an empty action that will navigate to a destination when configured.
Declaration
public GoToAction()
GoToAction(Destination)
Create an action that targets a specific destination in the current document.
Declaration
public GoToAction(Destination destination)
Parameters
destination
The destination for the action.
GoToAction(NamedDestination)
Create an action that targets a specific named destination.
Declaration
public GoToAction(NamedDestination namedDestination)
Parameters
namedDestination
The named destination for the action.
Properties
Destination
Gets or sets the explicit target within the document to navigate to when executed.
Declaration
public Destination Destination { get; set; }
Property Value
The destination object that defines the target location within the document.
NamedDestination
Gets or sets the named destination resolved at runtime to a location in the document.
Declaration
public NamedDestination NamedDestination { get; set; }
Property Value
The named destination object that references a location by name rather than explicit coordinates.