Skip to main content
Tab

FileManagerCustomTooltipEventArgs.TooltipText Property

Gets or sets a value that is the custom tooltip text.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

public string TooltipText { get; set; }

Property Value

Type Description
String

A string value specifying the custom tooltip text.

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