ICustomReportItem 인터페이스

Contains methods and properties to be implemented by custom report item run-time components.

네임스페이스:  Microsoft.ReportingServices.ReportRendering
어셈블리:  Microsoft.ReportingServices.ProcessingCore.dll의 Microsoft.ReportingServices.ProcessingCore

구문

‘선언
Public Interface ICustomReportItem
‘사용 방법
Dim instance As ICustomReportItem
public interface ICustomReportItem
public interface class ICustomReportItem
type ICustomReportItem =  interface end
public interface ICustomReportItem

주의

One instance of the class that implements ICustomReportItem is created during each report execution that contains any instances of the corresponding CustomReportItem type. For each instance of a CustomReportItem of the matching type that occurs in the report, CustomItem is set and then Process is called. Since the report server is multithreaded, the class that implements ICustomReportItem should avoid use of static member variables.

The custom report item class will not be installed if a failure occurs while creating the class. Any other failure will cause the entire report execution to fail.

For more information, please see 사용자 지정 보고서 항목.