ICustomReportItem.Process Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Renders the custom report item and places it in the RenderItem property.
public:
Microsoft::ReportingServices::ReportRendering::ChangeType Process();
public Microsoft.ReportingServices.ReportRendering.ChangeType Process ();
abstract member Process : unit -> Microsoft.ReportingServices.ReportRendering.ChangeType
Public Function Process () As ChangeType
Returns
This method always returns a ChangeType enumerator value of None.
Remarks
At report execution time, the report processing engine calls the Process method of the custom report item run-time control. You can use the Process method to parse the data contained in the CustomItem property, render an image of the custom report item, and place the rendered image into the RenderItem property. The report processing engine will then display the image contained in the RenderItem property in the report.
For more information, see Creating a Custom Report Item Run-Time Component.