ASPxHtmlEditor.SettingsImageUpload Property
In This Article
OBSOLETE
Use the Settings
Provides access to settings that relate to uploading images.
Namespace: DevExpress.Web.ASPxHtmlEditor
Assembly: DevExpress.Web.ASPxHtmlEditor.v24.2.dll
NuGet Package: DevExpress.Web
#Declaration
[Obsolete("Use the SettingsDialogs.InsertImageDialog.SettingsImageUpload property instead.")]
public ASPxHtmlEditorImageUploadSettings SettingsImageUpload { get; }
#Property Value
Type | Description |
---|---|
ASPx |
An ASPx |
#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