Class
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:

cs-api-definition
public class GoToAction : Action

Inheritance: objectActionGoToAction

Derived Classes: GoToRAction

Constructors

GoToAction()

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

Declaration

cs-api-definition
public GoToAction()

GoToAction(Destination)

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

Declaration

cs-api-definition
public GoToAction(Destination destination)

Parameters

destination

Destination

The destination for the action.

GoToAction(NamedDestination)

Create an action that targets a specific named destination.

Declaration

cs-api-definition
public GoToAction(NamedDestination namedDestination)

Parameters

namedDestination

NamedDestination

The named destination for the action.

Properties

Destination

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

Declaration

cs-api-definition
public Destination Destination { get; set; }

Property Value

Destination

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

cs-api-definition
public NamedDestination NamedDestination { get; set; }

Property Value

NamedDestination

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