Skip to main content
Tab

FileManagerDetailsColumn.FileInfoType Property

Gets or sets the type of information displayed in the column.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v24.2.dll

NuGet Package: DevExpress.Web

#Declaration

[DefaultValue(FileInfoType.FileName)]
public virtual FileInfoType FileInfoType { get; set; }

#Property Value

Type Default Description
FileInfoType FileName

One of the FileInfoType enumeration values.

Available values:

Name Description
FileName

The column displays a file name, i.e., the FileManagerItem.Name property value.

LastWriteTime

The column displays the time of the last file modification, i.e., the FileManagerItem.LastWriteTime property value.

Size

The column displays a file size, i.e., the FileManagerItem.Length property value.

Thumbnail

The column displays a file thumbnail.

Location

This column displays a file’s location, i.e., the FileManagerItem.Location property value.

#Remarks

Use the FileInfoType property to specify the type of information that will be displayed in the current column.

To learn how to display custom information in a column, see the Custom Columns topic.

See Also