New to Telerik ReportingStart a free 30-day trial

Represent an interactive action that navigates the report viewer to another report.

Definition

Namespace:Telerik.Reporting

Assembly:Telerik.Reporting.dll

Syntax:

C#
public class NavigateToReportAction : IAction

Inheritance: objectNavigateToReportAction

Implements: IAction

Constructors

C#
public NavigateToReportAction()

Properties

Determines the report parameters that are passed to the target report when the action is triggered.

C#
[Obsolete("Telerik.Reporting.NavigateToReportAction.Parameters property is now obsolete. Please set a Telerik.Reporting.TypeReportSource object for the Telerik.Reporting.NavigateToReportAction.ReportSource property instead and add the parameters to its Parameters collection. For more information, please visit: https://www.telerik.com/support/kb/reporting/general/q2-2012-api-changes-reportsources.aspx#navigatetoreportaction.")]
[Browsable(false)]
public ParameterCollection Parameters { get; }

Gets or sets the type name of the target report.

C#
[Obsolete("Telerik.Reporting.NavigateToReportAction.ReportDocumentType property is now obsolete. Please use the Telerik.Reporting.NavigateToReportAction.ReportSource property instead with a Telerik.Reporting.TypeReportSource object to build existing reports. For more information, please visit: https://www.telerik.com/support/kb/reporting/general/q2-2012-api-changes-reportsources.aspx#navigatetoreportaction.")]
[Browsable(false)]
public string ReportDocumentType { get; set; }
Remarks:

Use this property to specify the type name of the target report of the action. Must be the assembly qualified name of the Type of the report.

The target type should implement the IReportDocument interface and should have default (parameterless) constructor. The default constructor is used from the reporting engine to create a report instance when the action is triggered.

This property accepts expressions.

Specifies the ReportSource for the action.

C#
public ReportSource ReportSource { get; set; }

Methods

TODO: Add documentation.

C#
public bool Equals(NavigateToReportAction other)
Parameters:otherNavigateToReportActionReturns:

bool

TODO: Add documentation.

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

bool

Overrides: object.Equals(object)

TODO: Add documentation.

C#
public override int GetHashCode()
Returns:

int

Overrides: object.GetHashCode()

TODO: Add documentation.

C#
public override string ToString()
Returns:

string

Overrides: object.ToString()