ClassNavigateToReportAction
Represent an interactive action that navigates the report viewer to another report.
Definition
Namespace:Telerik.Reporting
Assembly:Telerik.Reporting.dll
Syntax:
public class NavigateToReportAction : IAction
Inheritance: objectNavigateToReportAction
Implements:
Constructors
NavigateToReportAction()
Declaration
public NavigateToReportAction()
Properties
Parameters
Determines the report parameters that are passed to the target report when the action is triggered.
Declaration
[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; }
Property Value
ReportDocumentType
Gets or sets the type name of the target report.
Declaration
[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; }
Property Value
string
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.
ReportSource
Specifies the ReportSource for the action.
Declaration
public ReportSource ReportSource { get; set; }
Property Value
Methods
Equals(NavigateToReportAction)
TODO: Add documentation.
Declaration
public bool Equals(NavigateToReportAction other)
Parameters
other
Returns
bool
Equals(object)
TODO: Add documentation.
Declaration
public override bool Equals(object obj)
Parameters
obj
object
Returns
bool
Overrides
GetHashCode()
TODO: Add documentation.
Declaration
public override int GetHashCode()
Returns
int
Overrides
ToString()
TODO: Add documentation.
Declaration
public override string ToString()
Returns
string
Overrides