FileSystemProviderBase.GetThumbnailUrl(FileManagerFile) Method
In This Article
Override this method to provide file manager files with custom thumbnails.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.2.dll
NuGet Package: DevExpress.Web
#Declaration
public virtual string GetThumbnailUrl(
FileManagerFile file
)
#Parameters
Name | Type | Description |
---|---|---|
file | File |
A File |
#Returns
Type | Description |
---|---|
String | A String value that is the URL of the current file’s thumbnail. |
#Remarks
If you create a custom file system provider inherited from the FileSystemProviderBase class, you can override the GetThumbnailUrl method to provide file manager files with custom thumbnails at the provider level.
You can specify the provided file thumbnails using the ASPxFileManager.CustomThumbnail event as well. To learn more, see the Thumbnails topic.
See Also