Click or drag to resize
HtmlHelperExtensionsEditableArea Method
Renders editable area markup.

Namespace: Kentico.PageBuilder.Web.Mvc
Assembly: Kentico.Content.Web.Mvc (in Kentico.Content.Web.Mvc.dll) Version: 12.0.0
Syntax
C#
public static IHtmlString EditableArea(
	this ExtensionPoint<HtmlHelper> instance,
	string areaIdentifier,
	string defaultSectionIdentifier = null,
	params string[] allowedWidgets
)

Parameters

instance
Type: Kentico.Web.MvcExtensionPointHtmlHelper
HtmlHelper extension point.
areaIdentifier
Type: SystemString
Area identifier.
defaultSectionIdentifier (Optional)
Type: SystemString
Identifier of a section to be used as an initial one for the area.
allowedWidgets
Type: SystemString
Identifiers of allowed widgets in the area. If none provided all widgets are allowed.

Return Value

Type: IHtmlString
Returns HTML markup for editable area container for edit mode.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type ExtensionPointHtmlHelper. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
Exceptions
ExceptionCondition
ArgumentNullExceptionThrown when instance is null.
ArgumentNullExceptionThrown when areaIdentifier is null.
ArgumentExceptionThrown when areaIdentifier is empty or whitespace.
Remarks
For the live site, null value is returned. The HTML markup of area and widgets included in the zones is rendered directly to the response.
See Also