ChangeType Enum

Definition

Defines the type of change resulting from processing or an event handler for a custom report item.

public enum class ChangeType
public enum ChangeType
type ChangeType = 
Public Enum ChangeType
Inheritance
ChangeType

Fields

Action 5

The user event should result in an action (such as redirecting to a URL) specified in Action.

Data 4

Data in the underlying data source changed, requiring the queries in the report to be executed again.

None 1

Neither the RenderItem nor the underlying data source changed.

Process 3

Properties of the CustomReportItem changed, requiring the report to be processed again.

Render 2

The RenderItem changed, requiring the report to be rendered again.

Remarks

This value should is returned by the Process method of a custom report item run-time component. This is not implemented in SQL Server 2005. In SQL Server 2005, all ChangeType objects return a value of None.

Applies to