Class ChangeOperationItem
Records the change of a single property within a ChangeObjectOperation,
keeping its name, type and the old and new values for undo and redo.
Inheritance
ChangeOperationItem
Assembly: Reportman.Reporting.dll
Syntax
public class ChangeOperationItem
Constructors
View Source
ChangeOperationItem(string, PropertyType, object, object)
Declaration
public ChangeOperationItem(string propertyName, PropertyType propertyType, object oldValue = null, object newValue = null)
Parameters
Properties
View Source
NewValue
Declaration
public object NewValue { get; set; }
Property Value
View Source
OldValue
Declaration
public object OldValue { get; set; }
Property Value
View Source
PropertyName
Declaration
public string PropertyName { get; set; }
Property Value
View Source
PropertyType
Declaration
public PropertyType PropertyType { get; set; }
Property Value