FileManagerCustomTooltipEventArgs.Item Property
In This Article
Provides the File Manager’s item to which the custom tooltip is specified.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.2.dll
NuGet Package: DevExpress.Web
#Declaration
public FileManagerItem Item { get; }
#Property Value
Type | Description |
---|---|
File |
A File |
#Remarks
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