A newer version of this page is available.
Switch to the current version.
ASPxHtmlEditor.Settings Property
Provides access to the ASPxHtmlEditor's main settings.
Namespace: DevExpress.Web.ASPxHtmlEditor
Assembly: DevExpress.Web.ASPxHtmlEditor.v18.2.dll
Declaration
public ASPxHtmlEditorSettings Settings { get; }
Public ReadOnly Property Settings As ASPxHtmlEditorSettings
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.
Examples
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
Feedback