Back to Devexpress

DxScheduler.ShowToolbarArea Property

blazor-devexpress-dot-blazor-dot-dxscheduler-3314c80c.md

latest1.2 KB
Original Source

DxScheduler.ShowToolbarArea Property

Specifies whether to display the toolbar.

Namespace : DevExpress.Blazor

Assembly : DevExpress.Blazor.v25.2.dll

NuGet Package : DevExpress.Blazor

Declaration

csharp
[DefaultValue(true)]
[Parameter]
public bool ShowToolbarArea { get; set; }

Property Value

TypeDefaultDescription
Booleantrue

true to display the toolbar; otherwise, false.

|

Remarks

The Scheduler component displays a toolbar atop the view area:

Use the ShowToolbarArea property to hide this toolbar:

razor
<DxScheduler StartDate="DateTime.Today"
             DataStorage="DataStorage"
             ShowToolbarArea="false">
    <Views>
        <DxSchedulerDayView />
        <DxSchedulerWeekView />
    </Views>
</DxScheduler>

See Also

DxScheduler Class

DxScheduler Members

DevExpress.Blazor Namespace