Skip to main content
.NET 6.0+

PredefinedReportsUpdater.AddPredefinedReport<T>(String, Type, Boolean) Method

Adds the specified predefined report to the PredefinedReportsUpdater instance.

Namespace: DevExpress.ExpressApp.ReportsV2

Assembly: DevExpress.ExpressApp.ReportsV2.v23.2.dll

Declaration

public void AddPredefinedReport<T>(
    string displayName,
    Type dataType,
    bool isInplaceReport
)
    where T : XtraReport

Parameters

Name Type Description
displayName String

A string which is the report’s display name.

dataType Type

A type of the business object used by the report’s data source.

isInplaceReport Boolean

A boolean value that indicates whether or not the report is an inplace report.

Type Parameters

Name
T

Remarks

The AddPredefinedReport<T> method’s generic parameter specifies the report type (the type of an XtraReport descendant specifying the predefined report layout). An example of using this method is available in the PredefinedReportsUpdater topic.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the AddPredefinedReport<T>(String, Type, Boolean) method.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also