Class PageBuilderHtmlHelperExtensions
- Namespace
- Kentico.PageBuilder.Web.Mvc
- Assembly
- Kentico.Content.Web.Mvc.dll
Provides extension methods for HtmlHelperExtensionPoint.
public static class PageBuilderHtmlHelperExtensions
- Inheritance
-
objectPageBuilderHtmlHelperExtensions
Methods
ResolveRichText(HtmlHelperExtensionPoint, string)
Resolves the dynamic text in the rich text. Text is also sanitized from potential XSS.
public static string ResolveRichText(this HtmlHelperExtensionPoint htmlHelper, string text)
Parameters
htmlHelper
HtmlHelperExtensionPointThe object that provides methods to render HTML fragments.
text
stringThe text to be resolved.
Returns
- string
Exceptions
- ArgumentNullException
Thrown when the
htmlHelper
is null.
RichTextEditor(HtmlHelperExtensionPoint, string, string)
HTML helper for rich text inline editor.
public static void RichTextEditor(this HtmlHelperExtensionPoint htmlHelper, string propertyName, string configurationName = "default")
Parameters
htmlHelper
HtmlHelperExtensionPointThe object that provides methods to render HTML fragments.
propertyName
stringName of the widget property which the inline editor edits.
configurationName
stringInline editor's configuration name.
Exceptions
- ArgumentNullException
Thrown when the
htmlHelper
is null.- ArgumentException
Thrown when the
propertyName
orconfigurationName
are null or empty.