EditorPart.ApplyChanges Method

Note: This method is new in the .NET Framework version 2.0.

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

Namespace: System.Web.UI.WebControls.WebParts
Assembly: System.Web (in system.web.dll)

public:
virtual bool ApplyChanges () abstract
public abstract boolean ApplyChanges ()
public abstract function ApplyChanges () : boolean

Return Value

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

The ApplyChanges method is a critical method on an EditorPart control. It is defined as an abstract method in the EditorPart class, and must be implemented by inherited controls. The method's purpose is to save the values a user has entered into an EditorPart control to the corresponding properties in the WebPart control that is referenced in the WebPartToEdit property.

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

Notes to Inheritors A class that derives from the EditorPart class must implement the ApplyChanges method. The implemented method gets a reference to the associated control using the WebPartToEdit property, and then updates the properties of that control with the current values in the EditorPart control.

The following code example demonstrates how to implement the ApplyChanges method in a custom EditorPart control. For the full code required to run the example, see the Example section of the EditorPart class overview.

The first part of the code example demonstrates the implementation of the ApplyChanges method in the custom EditorPart class named TextDisplayEditorPart. This method gets a reference to the associated TextDisplayWebPart control using the WebPartToEdit property. It then updates the value of the TextDisplayWebPart.FontStyle property.

No code example is currently available or this language may not be supported.

The second part of the code example shows how the associated WebPart control, TextDisplayWebPart, creates a collection of associated EditorPart controls (in this case, there is only one EditorPart control named TextDisplayEditorPart in the collection) in its implementation of the CreateEditorParts method. This method is executed when the TextDisplayWebPart control enters edit mode.

No code example is currently available or this language may not be supported.

Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.

.NET Framework

Supported in: 2.0

Community Additions

ADD
Show: