 | DataMappingTable.PropertyChanged Method |
Called when any property changes. If you want to avoid this event when filling the object,
wrap your setters to
row.InitProperties(() =>
{
row.MyProperty = ...
});
Namespace: CTExtensions.ExportCore.Config.DataMappingAssembly: CTInterface (in CTInterface.dll) Version: 25.0
Syntaxpublic abstract void PropertyChanged(
DataMappingRowControl row,
string tag
)
Public MustOverride Sub PropertyChanged (
row As DataMappingRowControl,
tag As String
)
Parameters
- row DataMappingRowControl
- The row that sent this event.
- tag String
- Tag of the property.
See Also