Share via


FormDataObject.modified Method

Definition

Indicates that the field has been successfully validated and modified in the current record.

public:
 override void modified();
public override void modified ();
override this.modified : unit -> unit
Public Overrides Sub modified ()

Remarks

This method is called from the modified method on controls if the validation methods returned true. You can override this method to allow for recalculation of other values that are based on the modified values. The call to the super() method guarantees that the modifiedField method on the table is called. Modified means that the value of the field on the current record has changed, but the value is not written to the database before the record is saved.

Applies to