LayoutEditorPart.SyncChanges Method

Definition

Retrieves the property values from a WebPart control and assigns them to the associated LayoutEditorPart 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 LayoutEditorPart control. It implements the SyncChanges method from the base class, retrieves the current values from the associated WebPart control, and updates the child controls in the LayoutEditorPart 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 LayoutEditorPart control, the EditorZoneBase zone that contains the control calls the SyncChanges method immediately after calling the ApplyChanges method, so that the values in the LayoutEditorPart control are always synchronized with the values in the associated WebPart control. Another case where the SyncChanges method is called is when a WebPart control is initially entering edit mode.

Notes to Callers

Although you can call the SyncChanges() method from your code, it is not necessary to do so. The Web Parts control set calls this method and the ApplyChanges() method at the proper times in the editing process to keep editing controls synchronized with their associated WebPart controls.

Applies to

See also