Skip to main content
A newer version of this page is available. .

ReportServerClient.CloneReport(Int32, ReportDto, Object, Action<ScalarOperationCompletedEventArgs<ReportDto>>) Method

Creates a copy of the specified report.

Namespace: DevExpress.ReportServer.ServiceModel.Client

Assembly: DevExpress.Printing.v18.2.Core.dll

Declaration

public void CloneReport(
    int sourceReportId,
    ReportDto reportDto,
    object asyncState,
    Action<ScalarOperationCompletedEventArgs<ReportDto>> onCompleted
)

Parameters

Name Type Description
sourceReportId Int32

A System.Int32 value specifying a source report.

reportDto ReportDto

A data transfer object specifying properties of the created report copy.

asyncState Object

A Object value, containing information about the asynchronous operation.

onCompleted Action<ScalarOperationCompletedEventArgs<ReportDto>>

A System.Action delegate to be called when the operation is complete.

See Also