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

ASPxHtmlEditorUploadSettingsBase.UploadStorage Property

Specifies the type of storage used by the ASPxHtmlEditor control.

Namespace: DevExpress.Web.ASPxHtmlEditor

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

Declaration

[DefaultValue(UploadFileStorageType.FileSystem)]
public UploadFileStorageType UploadStorage { get; set; }

Property Value

Type Default Description
UploadFileStorageType **FileSystem**

One of the UploadFileStorageType enumeration values.

Available values:

Name Description
FileSystem

The control uploads files to the server’s physical file system. The files are automatically saved to the folder specified by the HtmlEditorUploadControlFileSystemSettings.UploadFolder property.

Azure

Identifies the Azure cloud storage used in ASPxHtmlEditor.

Amazon

Identifies the Amazon cloud storage used in ASPxHtmlEditor.

Dropbox

Identifies the Dropbox cloud storage used in ASPxHtmlEditor.

Property Paths

You can access this nested property as listed below:

Object Type Path to UploadStorage
HtmlEditorInsertAudioDialogSettings
.SettingsAudioUpload.UploadStorage
HtmlEditorInsertFlashDialogSettings
.SettingsFlashUpload.UploadStorage
HtmlEditorInsertImageDialogSettings
.SettingsImageUpload.UploadStorage
HtmlEditorInsertVideoDialogSettings
.SettingsVideoUpload.UploadStorage
MVCxHtmlEditorInsertAudioDialogSettings
.SettingsAudioUpload.UploadStorage
MVCxHtmlEditorInsertFlashDialogSettings
.SettingsFlashUpload.UploadStorage
MVCxHtmlEditorInsertImageDialogSettings
.SettingsImageUpload.UploadStorage
MVCxHtmlEditorInsertVideoDialogSettings
.SettingsVideoUpload.UploadStorage

Remarks

ASPxHtmlEditor provides the capability to operate with files contained in the server’s physical file system or in cloud services. Use the UploadStorage property to specify the type of storage where the files are stored.

For Amazon storage, use the ASPxHtmlEditorUploadSettingsBase.AmazonSettings property to specify Amazon account settings.

For Azure storage, use the ASPxHtmlEditorUploadSettingsBase.AzureSettings property to specify the Azure account settings.

For Dropbox storage, use the ASPxHtmlEditorUploadSettingsBase.DropboxSettings property to specify the Dropbox account settings.

For FileSystem storage, use the ASPxHtmlEditorUploadSettingsBase.FileSystemSettings property to specify the file upload folder.

See Also