WebPartManager::BeginWebPartEditing Method (WebPart^)
.NET Framework (current version)
Starts the process of editing a WebPart control.
Assembly: System.Web (in System.Web.dll)
Parameters
- webPart
-
Type:
System.Web.UI.WebControls.WebParts::WebPart^
The control to be edited.
| Exception | Condition |
|---|---|
| ArgumentNullException | webPart is null. |
| InvalidOperationException | The current display mode on the page is not EditDisplayMode. |
| ArgumentException | webPart is closed. - or - webPart is not part of the Controls collection. -or - webPart is equal to the SelectedWebPart control. |
The BeginWebPartEditing method exists so that the process of editing controls can be done in distinct stages, giving developers more control over the process. The method performs a set of initial checks to ensure that webPart is in a state where it can be edited. If webPart passes all the checks, it is then set as the currently selected control (see the SelectedWebPart property), and the editing process can continue.
.NET Framework
Available since 2.0
Available since 2.0
Show: