ASPxHtmlEditor.Settings Property
Provides access to the ASPxHtmlEditor‘s main settings.
Namespace: DevExpress.Web.ASPxHtmlEditor
Assembly: DevExpress.Web.ASPxHtmlEditor.v24.1.dll
NuGet Package: DevExpress.Web
Declaration
Property Value
Type | Description |
---|---|
ASPxHtmlEditorSettings | An ASPxHtmlEditorSettings object that contains the control’s options. |
Remarks
The object returned provides a set of options that specify which elements of the ASPxHtmlEditor‘s functionality are available to end-users.
Example
The complete sample project is available in the DevExpress Code Central database at E377.
...
<dx:ASPxHtmlEditor ID="ASPxHtmlEditor1" runat="server" Html='<%# Bind("Html") %>'>
<SettingsImageUpload>
<ValidationSettings AllowedFileExtensions=".jpg, .png, .gif">
</ValidationSettings>
</SettingsImageUpload>
<Settings AllowDesignView="False" AllowHtmlView="False" />
</dx:ASPxHtmlEditor>
...
See Also