New to Telerik Document ProcessingStart a free 30-day trial

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:

C#
public class GoToAction : Action

Inheritance: objectActionGoToAction

Derived Classes: GoToRAction

Constructors

Create an empty action that will navigate to a destination when configured.

C#
public GoToAction()

Create an action that targets a specific destination in the current document.

C#
public GoToAction(Destination destination)
Parameters:destinationDestination

The destination for the action.

Create an action that targets a specific named destination.

C#
public GoToAction(NamedDestination namedDestination)
Parameters:namedDestinationNamedDestination

The named destination for the action.

Properties

Gets or sets the explicit target within the document to navigate to when executed.

C#
public Destination Destination { get; set; }
Property Value:

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.

C#
public NamedDestination NamedDestination { get; set; }
Property Value:

The named destination object that references a location by name rather than explicit coordinates.