BehaviorEditorPart.SyncChanges Method

Definition

Retrieves the property values from a WebPart control and assigns them to the associated BehaviorEditorPart control.

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

Remarks

The SyncChanges method is a critical method on a BehaviorEditorPart control. It implements the SyncChanges method from the base class, retrieves the current values from the associated WebPart control, and updates the controls in the BehaviorEditorPart control with those values so a user can edit them.

The SyncChanges method is called whenever the values in the associated WebPart control might have changed. For a BehaviorEditorPart control, the EditorZoneBase zone that contains the control calls the SyncChanges method, so that the values in the BehaviorEditorPart control are always synchronized with the values in the associated WebPart control.

Applies to

See also