AppearanceEditorPart.ApplyChanges Method

Definition

Saves the values from an AppearanceEditorPart control to the corresponding properties in the associated WebPart control.

public:
 override bool ApplyChanges();
public override bool ApplyChanges ();
override this.ApplyChanges : unit -> bool
Public Overrides Function ApplyChanges () As Boolean

Returns

true if the action of saving values from the AppearanceEditorPart control to the WebPart control is successful; otherwise (if an error occurs), false.

Exceptions

An error occurs when setting the value for any of the following properties on the WebPart control that is being edited:

TitleChromeTypeDirectionHeightWidthHidden

Remarks

The ApplyChanges method is a critical method on a AppearanceEditorPart control. It is called when the user clicks a button representing an OK or an apply verb in the editing user interface (UI).

The method's purpose is to save the values a user has set on an AppearanceEditorPart control to the corresponding properties in the associated WebPart control. The associated control is referenced in the inherited WebPartToEdit property.

The ApplyChanges method attempts to set the following properties on the associated WebPart control:

Applies to

See also