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

HtmlEditorFileManagerSettingsBase.CustomFileSystemProvider Property

Specifies the custom file system provider used in the file manager.

Namespace: DevExpress.Web.ASPxHtmlEditor

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

Declaration

public FileSystemProviderBase CustomFileSystemProvider { get; set; }

Property Value

Type Description
FileSystemProviderBase

A FileSystemProviderBase object that is the file system provider.

Property Paths

You can access this nested property as listed below:

Object Type Path to CustomFileSystemProvider
HtmlEditorInsertAudioDialogSettings
.SettingsAudioSelector.CustomFileSystemProvider
HtmlEditorInsertFlashDialogSettings
.SettingsFlashSelector.CustomFileSystemProvider
HtmlEditorInsertImageDialogSettings
.SettingsImageSelector.CustomFileSystemProvider
HtmlEditorInsertLinkDialogSettings
.SettingsDocumentSelector.CustomFileSystemProvider
HtmlEditorInsertVideoDialogSettings
.SettingsVideoSelector.CustomFileSystemProvider
MVCxHtmlEditorInsertAudioDialogSettings
.SettingsAudioSelector.CustomFileSystemProvider
MVCxHtmlEditorInsertFlashDialogSettings
.SettingsFlashSelector.CustomFileSystemProvider
MVCxHtmlEditorInsertImageDialogSettings
.SettingsImageSelector.CustomFileSystemProvider
MVCxHtmlEditorInsertLinkDialogSettings
.SettingsDocumentSelector.CustomFileSystemProvider
MVCxHtmlEditorInsertVideoDialogSettings
.SettingsVideoSelector.CustomFileSystemProvider

Remarks

Use the CustomFileSystemProvider property to specify a provider that is used in the file manager, which is built in editor media dialogs.

To learn more, see the Custom File System Provider topic.

this.HtmlEditor1.SettingsDialogs.InsertImageDialog.SettingsImageSelector.CustomFileSystemProvider = new LinqFileSystemProvider(string.Empty);
HtmlEditor1.SettingsDialogs.InsertImageDialog.SettingsImageSelector.Enabled = true;
HtmlEditor1.SettingsDialogs.InsertImageDialog.SettingsImageSelector.UploadSettings.Enabled = true;
See Also