New to Telerik UI for BlazorStart a free 30-day trial

Definition

Constructors

C#
public TabStripOverflowMenu()

Methods

C#
protected override void BuildRenderTree(RenderTreeBuilder __builder)
Parameters:__builderRenderTreeBuilder

Overrides: ComponentBase.BuildRenderTree(RenderTreeBuilder)

C#
protected override Task OnParametersSetAsync()
Returns:

Task

Overrides: ComponentBase.OnParametersSetAsync()

Forces the overflow menu to re-render and update the list of overflow tabs.

C#
public void Refresh()

Properties

The class attribute of the button element. Use it to apply custom CSS classes for styling the overflow menu button. Example: "my-overflow-button custom-style".

C#
[Parameter]
public string Class { get; set; }

Controls the button's visual density and background treatment.

C#
[Parameter]
public string FillMode { get; set; }
Remarks:

Solid provides a filled background for primary actions. Outline shows only a border for secondary actions. Flat removes background and border for subtle actions. Link styles the button as a hyperlink.

Displays an icon inside the button using Telerik's built-in icon library or custom icons. Example: SvgIcon.Save, FontIcon.Plus, or custom icon objects.

C#
[Parameter]
public object Icon { get; set; }

Sets the unique HTML id attribute for the button element. Useful for CSS targeting and JavaScript selection. Example: "submitButton".

C#
[Parameter]
public string Id { get; set; }

Controls the border radius and corner styling of the button.

C#
[Parameter]
public string Rounded { get; set; }
Remarks:

Small applies minimal rounding for compact layouts. Medium provides moderate rounding for balanced appearance. Large creates more pronounced rounded corners. Full makes circular buttons, ideal for icon-only buttons.

Determines the button's dimensions including padding, font size, and overall scale.

C#
[Parameter]
public string Size { get; set; }
Remarks:

Small creates compact buttons for dense layouts. Medium provides standard sizing for most interfaces. Large offers prominent sizing for important actions.

Sets the button's color scheme based on semantic meaning and visual hierarchy.

C#
[Parameter]
public string ThemeColor { get; set; }
Remarks:

Primary highlights the main call-to-action. Secondary indicates important but not primary actions. Success represents positive actions like save or confirm. Warning draws attention to potentially destructive actions. Error clearly marks dangerous operations like delete. Info provides neutral information or help actions. Base offers subtle, low-emphasis styling.

Sets the HTML title attribute which appears as a tooltip when users hover over the button. Example: "Save your changes" or "Delete this item".

C#
[Parameter]
public string Title { get; set; }