New to Telerik ReportingStart a free 30-day trial

Represent an interactive action that opens a URL.

Definition

Namespace:Telerik.Reporting

Assembly:Telerik.Reporting.dll

Syntax:

C#
public class NavigateToUrlAction : IAction

Inheritance: objectNavigateToUrlAction

Implements: IAction

Constructors

Creates a new instance of NavigateToUrlAction class

C#
public NavigateToUrlAction()

Properties

Gets or sets the URL target.

C#
public UrlTarget Target { get; set; }
Remarks:

Use this property to specify a URL target.

Url

string

Gets or sets the URL of the action.

C#
public string Url { get; set; }
Remarks:

Use this property to specify a URL.

This property accepts expressions.

Methods

Determines whether the specified NavigateToUrlAction equals the current instance.

C#
public bool Equals(NavigateToUrlAction other)
Parameters:otherNavigateToUrlAction

The NavigateToUrlAction to compare.

Returns:

bool

true if the specified NavigateToUrlAction is equal to the current instance; otherwise, false.

Determines whether the specified object equals the current instance.

C#
public override bool Equals(object obj)
Parameters:objobject

The object to compare.

Returns:

bool

true if obj is a NavigateToUrlAction and is equal to the current instance; otherwise, false.

Overrides: object.Equals(object)

Serves as the default hash function.

C#
public override int GetHashCode()
Returns:

int

A hash code for the current NavigateToUrlAction.

Overrides: object.GetHashCode()