Gets or sets a value indicating whether to show tooltips.

Namespace:  C1.Win.C1Preview
Assembly:  C1.Win.C1Report.2 (in C1.Win.C1Report.2.dll)

Syntax

C#
[DefaultValueAttribute(true)]
public bool ShowToolTips { get; set; }
Visual Basic
<DefaultValueAttribute(True)> _
Public Property ShowToolTips As Boolean
	Get
	Set

Field Value

True to turn tooltips on, false to turn them off.

Remarks

The default value for this property is True.

Examples

The following code sets the ShowToolTips property to False, so ToolTips will not appear in the preview pane:

Copy CodeVisual Basic
Me.C1PrintPreviewControl1.PreviewPane.ShowToolTips = False
Copy CodeC#
this.c1PrintPreviewControl1.PreviewPane.ShowToolTips = false;

See Also