Click or drag to resize

DataMappingTable.PropertyChanged Method

Called when any property changes. If you want to avoid this event when filling the object, wrap your setters to
C#
row.InitProperties(() => 
  {
    row.MyProperty = ... // Will not send PropertyChanged event.
  });

Namespace: CTExtensions.ExportCore.Config.DataMapping
Assembly: CTInterface (in CTInterface.dll) Version: 25.0
Syntax
public abstract void PropertyChanged(
	DataMappingRowControl row,
	string tag
)

Parameters

row  DataMappingRowControl
The row that sent this event.
tag  String
Tag of the property.
See Also