PropertyChangedEventArgs Constructor
Initializes a new instance of the PropertyChangedEventArgs class.
Namespace: Microsoft.VisualStudio.Modeling.Diagrams
Assembly: Microsoft.VisualStudio.Modeling.Sdk.Diagrams.12.0 (in Microsoft.VisualStudio.Modeling.Sdk.Diagrams.12.0.dll)
Syntax
'Declaration
Public Sub New ( _
propertyName As String, _
oldValue As Object, _
newValue As Object _
)
public PropertyChangedEventArgs(
string propertyName,
Object oldValue,
Object newValue
)
public:
PropertyChangedEventArgs(
String^ propertyName,
Object^ oldValue,
Object^ newValue
)
new :
propertyName:string *
oldValue:Object *
newValue:Object -> PropertyChangedEventArgs
public function PropertyChangedEventArgs(
propertyName : String,
oldValue : Object,
newValue : Object
)
Parameters
propertyName
Type: System.StringThe name of the property.
oldValue
Type: System.ObjectThe old value of the property.
newValue
Type: System.ObjectThe new value of the property.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.