Skip to main content
Tab

ASPxRatingControl.Titles Property

Gets or sets the items tooltip titles (a string containing the enumeration of titles, one after another, separated by commas).

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

[DefaultValue("")]
public string Titles { get; set; }

Property Value

Type Default Description
String String.Empty

A String value which specifies the items tooltip titles.

Remarks

The Titles property value represents a string that contains the enumeration of titles, one after another, separated by commas.

If the Titles property is set to an empty string, the title isn’t displayed.

Example

This example illustrates how to use the ASPxRatingControl.Titles property to specify the control’s items tooltips invoked after hovering. Here, the Titles property specifies only the titles for the control’s first and the last items.

<dxrc:ASPxRatingControl ID="ASPxRatingControl1" runat="server" 
Titles="the lowest rate,,,,the highest rate">
</dxrc:ASPxRatingControl>
See Also