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

In This Topic
    ToolTip Property (ReportItem)
    In This Topic
    Gets or sets a tooltip for the report item.
    Syntax
    'Declaration
     
    Public Property ToolTip As ExpressionInfo
    public ExpressionInfo ToolTip {get; set;}

    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