Skip to main content
A newer version of this page is available. .

RepositoryItemRatingControl.ShowToolTips Property

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

Namespace: DevExpress.XtraEditors.Repository

Assembly: DevExpress.XtraEditors.v19.2.dll

Declaration

[DXCategory("ToolTip")]
[DefaultValue(true)]
public bool ShowToolTips { get; set; }

Property Value

Type Default Description
Boolean **true**

true, to display tooltips; otherwise, false.

Remarks

The ShowToolTips property specifies whether tooltips for the current control are enabled. The RatingControl.ShowToolTips property 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 RepositoryItemRatingControl.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 Tooltips for more information.

See Also