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

DxToolbar.Title Property

Specifies a Toolbar’s title.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v20.2.dll

NuGet Package: DevExpress.Blazor

Declaration

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

Property Value

Type Description
String

A String object that specifies the title.

Remarks

Use the Title property to specify a Toolbar title. The title is displayed on the left of the Toolbar items.

<DxToolbar Title="Operations:">
    <DxToolbarItem Text="Insert"></DxToolbarItem>
    <DxToolbarItem Text="Edit"></DxToolbarItem>
    <DxToolbarItem Text="Delete"></DxToolbarItem>
</DxToolbar>

Toolbar Title

See Also