New to Telerik Document ProcessingStart a free 30-day trial

Open a target URI when activated, typically used for web links or external resources.

Definition

Namespace:Telerik.Windows.Documents.Fixed.Model.Actions

Assembly:Telerik.Windows.Documents.Fixed.dll

Syntax:

C#
public class UriAction : Action

Inheritance: objectActionUriAction

Constructors

Create a URI action with default settings.

C#
public UriAction()

Create a URI action targeting the provided URI.

C#
public UriAction(Uri uri)
Parameters:uriUri

The URI.

Properties

Gets or sets whether pointer coordinates are appended to the URI when triggered (viewer-dependent).

C#
public bool? IncludeMouseCoordinates { get; set; }
Property Value:

true if the mouse coordinates should be included; otherwise, false.

Uri

Uri

Gets or sets the target address to open when the action runs; accepts absolute or relative URIs.

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

The URI object representing the web address, file path, or other resource location.