FileManagerCustomTooltipEventArgs.TooltipText Property
Gets or sets a value that is the custom tooltip text.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.1.dll
NuGet Package: DevExpress.Web
Declaration
Property Value
Type | Description |
---|---|
String | A string value specifying the custom tooltip text. |
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