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

FileSystemProviderBase.GetDetailsCustomColumnDisplayText(FileManagerDetailsColumn) Method

Override this method to provide a text displayed within a custom column.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v18.2.dll

Declaration

public virtual string GetDetailsCustomColumnDisplayText(
    FileManagerDetailsColumn column
)

Parameters

Name Type Description
column FileManagerDetailsColumn

A FileManagerDetailsColumn object that is a custom column currently being processed.

Returns

Type Description
String

A String value that is the text displayed within the column.

Remarks

If you create a custom file system provider inherited from the FileSystemProviderBase class, you can override the GetDetailsCustomColumnDisplayText method to provide a text displayed within a custom column. When the ASPxFileManager.DetailsViewCustomColumnDisplayText event fires, the FileManagerDetailsViewCustomColumnDisplayTextEventArgs.DisplayText event argument property gets a value using the GetDetailsCustomColumnDisplayText method implementation.

See Also