Skip to main content
Tab

FileManagerCustomTooltipEventArgs.Item Property

Provides the File Manager’s item to which the custom tooltip is specified.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

public FileManagerItem Item { get; }

Property Value

Type Description
FileManagerItem

A FileManagerItem object specifying the File Manager item.

Remarks

ASPxFileManager-CustomTooltip

protected void ASPxFileManager1_CustomTooltip(object source, DevExpress.Web.FileManagerCustomTooltipEventArgs e) {
    e.TooltipText = string.Format("Custom tooltip for {0} with name \"{1}\"", e.Item is FileManagerFile ? "file" : "folder", e.Item.Name); 
}
See Also