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.v21.2.dll

NuGet Package: DevExpress.Web

Declaration

public FileSystemProviderBase CustomFileSystemProvider { get; set; }

Property Value

Type Description
FileSystemProviderBase

A FileSystemProviderBase object that is the file system provider.

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