[]
Gets or sets a tooltip for the report item.
public ExpressionInfo ToolTip { get; set; }
Type | Description |
---|---|
ExpressionInfo | An ExpressionInfo object evaluating to the tooltip text. |
The tooltip is used for elements such as TITLE
and ALT
attributes in HTML reports.
var reportItem = new TextBox();
reportItem.ToolTip = "This is a tooltip.";