Skip to main content

RatingControl.ShowToolTips Property

Gets or sets whether a tooltip should be displayed when the mouse pointer is over the control.

Namespace: DevExpress.XtraEditors

Assembly: DevExpress.XtraEditors.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

public override bool ShowToolTips { get; set; }

Property Value

Type Description
Boolean

true, to display tooltips; otherwise, false.

Remarks

The ShowToolTips property specifies whether tooltips for the current control are enabled. The RepositoryItemRatingControl.ShowToolTips setting, accessible through RatingControl.Properties, is equivalent to the current property.

To specify a regular tooltip or a SuperToolTip for a control, use the BaseControl.ToolTip and BaseControl.SuperTip properties, respectively. You can also provide custom tooltips for particular rating values, using the RatingControl.BeforeShowToolTip event.

The BaseControl.ToolTipController property determines the ToolTipController which manages tooltips for the control. The type of tooltips displayed by controls is determined by the ToolTipController.ToolTipType property. See Hints and Tooltips for more information.

See Also