Back to Devexpress

DxSchedulerPreviousIntervalToolbarItem Class

blazor-devexpress-dot-blazor-ce889ffa.md

latest3.2 KB
Original Source

DxSchedulerPreviousIntervalToolbarItem Class

The toolbar item that allows you to navigate to the previous time interval.

Namespace : DevExpress.Blazor

Assembly : DevExpress.Blazor.v25.2.dll

NuGet Package : DevExpress.Blazor

Declaration

csharp
public class DxSchedulerPreviousIntervalToolbarItem :
    SchedulerToolbarItemBase

Remarks

Users can click Previous Interval button to move one visible time frame backward.

The DxSchedulerPreviousIntervalToolbarItem partly supports toolbar item functionality. Refer to the following list for additional information on available options: API Reference.

Note that Previous Interval buttons have a pre-defined tooltip and start a new group by default, unlike regular toolbar items:

PropertyToolbar Item Default ValuePrevious Interval Default Value
BeginGroupfalsetrue
Tooltip""A11y_Scheduler_Toolbar_PreviousTimePeriod

The following example aligns Next Interval and Previous Interval buttons to the right:

razor
<DxScheduler StartDate="DateTime.Today"
             DataStorage="DataStorage">
    <Views>
        <DxSchedulerDayView />
    </Views>
    <ToolbarItems>
        <DxSchedulerTodayToolbarItem />
        <DxSchedulerDateNavigatorToolbarItem />
        <DxSchedulerPreviousIntervalToolbarItem BeginGroup="true" Alignment="ToolbarItemAlignment.Right" />
        <DxSchedulerNextIntervalToolbarItem />
    </ToolbarItems>
</DxScheduler>

Implements

IComponent

IHandleEvent

IHandleAfterRender

IAsyncDisposable

Inheritance

Object ComponentBase DxComponentBase DxModelComponent DxToolbarItemBase DxToolbarItem DevExpress.Blazor.Scheduler.Internal.SchedulerToolbarItemBase DxSchedulerPreviousIntervalToolbarItem

See Also

DxSchedulerPreviousIntervalToolbarItem Members

DevExpress.Blazor Namespace