EditorZoneBase.CreateEditorPartChrome Method

Definition

Gets a reference to a new EditorPartChrome object used to render the peripheral user interface (UI) elements around an EditorZoneBase zone.

C#
protected virtual System.Web.UI.WebControls.WebParts.EditorPartChrome CreateEditorPartChrome();

Returns

An EditorPartChrome that renders the peripheral UI elements for the zone.

Remarks

The CreateEditorPartChrome method returns a new EditorPartChrome object. Chrome includes the following peripheral UI elements that surround each individual EditorPart control in the zone: a border; a title bar; the items that appear within the title bar, including optional icons, title text, and a verbs menu; and items appearing in the footer area of a control.

The CreateEditorPartChrome method uses the returned EditorPartChrome object to create the chrome around each EditorPart control.

Notes to Inheritors

The CreateEditorPartChrome() method can be overridden in a derived class to provide a different implementation. For example, you might create a customized EditorPartChrome class to give you more control over the rendering and appearance of the editing UI. If you override the CreateEditorPartChrome() method in a derived zone, you could create your custom EditorPartChrome object in the overridden method.

Applies to

Product Versions
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also