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

ASPxHtmlEditorUploadSettingsBase.AdvancedUploadModePacketSize Property

Gets or sets the size of file packets.

Namespace: DevExpress.Web.ASPxHtmlEditor

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

Declaration

[DefaultValue(200000)]
public int AdvancedUploadModePacketSize { get; set; }

Property Value

Type Default Description
Int32 200000

An Int32 value specifying the size of the packets in bytes.

Property Paths

You can access this nested property as listed below:

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

Remarks

When the ASPxHtmlEditorUploadSettingsBase.UseAdvancedUploadMode property is set to true, the uploaded file is sent to the server in small packets (one by one) and is saved into a temporary file within a specific server folder. Use the AdvancedUploadModePacketSize property to specify the size of the packets in bytes.

See Also