Skip to main content
A newer version of this page is available. .

ASPxHtmlEditor.SettingsImageUpload Property

OBSOLETE

Use the SettingsDialogs.InsertImageDialog.SettingsImageUpload property instead.

Provides access to settings that relate to uploading images.

Namespace: DevExpress.Web.ASPxHtmlEditor

Assembly: DevExpress.Web.ASPxHtmlEditor.v20.2.dll

NuGet Package: DevExpress.Web

Declaration

[Obsolete("Use the SettingsDialogs.InsertImageDialog.SettingsImageUpload property instead.")]
public ASPxHtmlEditorImageUploadSettings SettingsImageUpload { get; }

Property Value

Type Description
ASPxHtmlEditorImageUploadSettings

An ASPxHtmlEditorImageUploadSettings object that holds options for uploading images.

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