HtmlSettingsAttribute.StyleAttributeFilterMode Property
Specifies the filtering mode for style attribute elements.
Namespace: DevExpress.Web.Mvc
Assembly: DevExpress.Web.Mvc5.v24.1.dll
NuGet Package: DevExpress.Web.Mvc5
Declaration
Property Value
Type | Description |
---|---|
HtmlEditorFilterMode | One of the HtmlEditorFilterMode enumeration values. |
Available values:
Name | Description |
---|---|
BlackList | Specified elements are prohibited and will be removed; other elements will be maintained. |
WhiteList | Specified elements are allowed and will be maintained; other elements will be removed. |
Remarks
HtmlEditor provides you with the capability to filter content elements. You can specify filter rules for tags, attributes, and style attributes.
Use the StyleAttributeFilterMode property to specify the filtering mode that is applied to the style attribute elements listed in the HtmlSettingsAttribute.StyleAttributesFilter property.
[HtmlSettings(StyleAttributeFilterMode = HtmlEditorFilterMode.WhiteList, StyleAttributesFilter = "color, text-align")]