Interface that has to be implemented by a view in order to by supported by RadzenScheduler<T>.
Namespace: Radzen.Blazor
Assembly: Radzen.Blazor.dll
public interface ISchedulerViewGets the end date.
public DateTime EndDate { get; }
| Type | Description |
|---|---|
| DateTime | Gets the end date. |
Gets the icon of the view. It is displayed in the view switching UI.
public string Icon { get; }
| Type | Description |
|---|---|
| string | Gets the icon of the view. It is displayed in the view switching UI. |
Gets the start date.
public DateTime StartDate { get; }
| Type | Description |
|---|---|
| DateTime | Gets the start date. |
Gets the text of the view. It is displayed in the view switching UI.
public string Text { get; }
| Type | Description |
|---|---|
| string | Gets the text of the view. It is displayed in the view switching UI. |
Gets the title of the view. It is displayed in the RadzenScheduler title area.
public string Title { get; }
| Type | Description |
|---|---|
| string | Gets the title of the view. It is displayed in the RadzenScheduler title area. |
Returns a new date when the user clicks the next button of RadzenScheduler.
public abstract DateTime Next()
| Type | Description |
|---|---|
| DateTime | The next date. For example a day view will return the next day, a week view will return the next week. |
Handles appointent move event.
public abstract Task OnAppointmentMove(SchedulerAppointmentMoveEventArgs data)
| Type | Name | Description |
|---|---|---|
| SchedulerAppointmentMoveEventArgs | data |
| Type | Description |
|---|---|
| Task |
Returns a new date when the user clicks the previous button of RadzenScheduler.
public abstract DateTime Prev()
| Type | Description |
|---|---|
| DateTime | The previous date. For example a day view will return the previous day, a week view will return the previous week. |
Renders this instance.
public abstract RenderFragment Render()
| Type | Description |
|---|---|
| RenderFragment | RenderFragment. |