ReportObject.OnChildPropertyChanged Method
This API supports the SQL Server 2012 infrastructure and is not intended to be used directly from your code.
Raises an event when the property of the child was changed.
Namespace: Microsoft.ReportingServices.RdlObjectModel
Assembly: Microsoft.ReportingServices.Designer.Controls (in Microsoft.ReportingServices.Designer.Controls.dll)
Syntax
'Declaration
Protected Friend Overridable Sub OnChildPropertyChanged ( _
propertyIndex As Integer, _
oldValue As Object, _
newValue As Object _
)
'Usage
Dim propertyIndex As Integer
Dim oldValue As Object
Dim newValue As Object
Me.OnChildPropertyChanged(propertyIndex, _
oldValue, newValue)
protected internal virtual void OnChildPropertyChanged(
int propertyIndex,
Object oldValue,
Object newValue
)
protected public:
virtual void OnChildPropertyChanged(
int propertyIndex,
Object^ oldValue,
Object^ newValue
)
abstract OnChildPropertyChanged :
propertyIndex:int *
oldValue:Object *
newValue:Object -> unit
override OnChildPropertyChanged :
propertyIndex:int *
oldValue:Object *
newValue:Object -> unit
function OnChildPropertyChanged(
propertyIndex : int,
oldValue : Object,
newValue : Object
)
Parameters
- propertyIndex
Type: System.Int32
The index of the property.
- oldValue
Type: System.Object
The old value of the property.
- newValue
Type: System.Object
The new value of the property.