HtmlEditorFileManagerSettingsBase.CustomFileSystemProvider Property
Specifies the custom file system provider used in the file manager.
Namespace: DevExpress.Web.ASPxHtmlEditor
Assembly: DevExpress.Web.ASPxHtmlEditor.v24.1.dll
NuGet Package: DevExpress.Web
Declaration
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