DataAttributeChangeEventArgs Constructor |
Create new DataAttributeChangeEventArgs
Namespace:
Aloe.SystemFrameworks.Domain
Assembly:
Aloe.SystemFrameworks.Domain (in Aloe.SystemFrameworks.Domain.dll) Version: 20.1.3.5
Syntaxpublic DataAttributeChangeEventArgs(
EditableDomainObject obj,
IDataAttribute attribute,
Object newValue,
Object oldValue
)
Public Sub New (
obj As EditableDomainObject,
attribute As IDataAttribute,
newValue As Object,
oldValue As Object
)
public:
DataAttributeChangeEventArgs(
EditableDomainObject^ obj,
IDataAttribute^ attribute,
Object^ newValue,
Object^ oldValue
)
new :
obj : EditableDomainObject *
attribute : IDataAttribute *
newValue : Object *
oldValue : Object -> DataAttributeChangeEventArgs
Parameters
- obj
- Type: Aloe.SystemFrameworks.DomainEditableDomainObject
The domain object which contains the changed attribute. - attribute
- Type: Aloe.SystemFrameworks.DomainIDataAttribute
The attribute being changed. - newValue
- Type: SystemObject
The new value which is being set. - oldValue
- Type: SystemObject
The value of the attribute before the change.
See Also