ActiveReports 19 .NET Edition
MESCIUS.ActiveReports.Core.Rdl Assembly / GrapeCity.ActiveReports.PageReportModel Namespace / ReportItem Class / ToolTip Property
Example

ToolTip Property (ReportItem)
Gets or sets a tooltip for the report item.
Syntax
'Declaration
 
Public Property ToolTip As ExpressionInfo
 

Property Value

An GrapeCity.Enterprise.Data.Expressions.ExpressionInfo object evaluating to the tooltip text.
Remarks
The tooltip is used for elements such as TITLE and ALT attributes in HTML reports.
Example
var reportItem = new TextBox();
reportItem.ToolTip = "This is a tooltip.";
See Also