| EntityCoreTFieldsOnSetValue Method  | 
 
            Called right at the beginning of SetValue(), which is called from an entity field property setter
            
 
    Namespace: 
   SD.LLBLGen.Pro.ORMSupportClasses
    Assembly:
   SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.3.0.0 (5.3.0)
Syntaxprotected virtual void OnSetValue(
	int fieldIndex,
	Object valueToSet,
	out bool cancel
)
Protected Overridable Sub OnSetValue ( 
	fieldIndex As Integer,
	valueToSet As Object,
	<OutAttribute> ByRef cancel As Boolean
)
Parameters
- fieldIndex
 - Type: SystemInt32
Index of the field to set. - valueToSet
 - Type: SystemObject
The value to set. - cancel
 - Type: SystemBoolean
if set to true, the setvalue is cancelled and the set action is terminated 
See Also