RowColumnChangeEventArgs Constructor |
Create new DataAttributeChangeEventArgs
Namespace:
Aloe.SystemFrameworks.Domain.DataAccess
Assembly:
Aloe.SystemFrameworks.Domain (in Aloe.SystemFrameworks.Domain.dll) Version: 20.1.3.5
Syntaxpublic RowColumnChangeEventArgs(
IBufferRow row,
IBufferColumn column,
Object newValue,
Object oldValue,
Object originalValue = null
)
Public Sub New (
row As IBufferRow,
column As IBufferColumn,
newValue As Object,
oldValue As Object,
Optional originalValue As Object = Nothing
)
public:
RowColumnChangeEventArgs(
IBufferRow^ row,
IBufferColumn^ column,
Object^ newValue,
Object^ oldValue,
Object^ originalValue = nullptr
)
new :
row : IBufferRow *
column : IBufferColumn *
newValue : Object *
oldValue : Object *
?originalValue : Object
(* Defaults:
let _originalValue = defaultArg originalValue null
*)
-> RowColumnChangeEventArgs
Parameters
- row
- Type: Aloe.SystemFrameworks.Domain.DataAccessIBufferRow
The changed row. - column
- Type: Aloe.SystemFrameworks.Domain.DataAccessIBufferColumn
The changed column. - newValue
- Type: SystemObject
The new value which is being set. - oldValue
- Type: SystemObject
The value of the column before the change. - originalValue (Optional)
- Type: SystemObject
The original value.
See Also