DxRibbonItemBase.Tooltip Property
Specifies the item’s tooltip text.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v25.2.dll
NuGet Package: DevExpress.Blazor
Declaration
[DefaultValue(null)]
[Parameter]
public string Tooltip { get; set; }
Property Value
| Type | Default | Description |
|---|---|---|
| String | null | The tooltip text. |
Remarks
Use the Tooltip property to specify tooltip text for the Ribbon item.
<DxRibbon>
<DxRibbonTab Text="Home">
<DxRibbonGroup Text="Style">
<DxRibbonItem IconCssClass="dx-icon-bold"
Tooltip="Bold" />
<DxRibbonItem IconCssClass="dx-icon-italic"
Tooltip="Italic" />
<DxRibbonItem IconCssClass="dx-icon-underline"
Tooltip="Underline" />
</DxRibbonGroup>
</DxRibbonTab>
</DxRibbon>

See Also