A component that lets you define when a recurrence ends: never, after a count, or on a specific date. Binds to RecurrenceRule via Rule and RuleChanged, and uses EndDate as the default for .
Definition
Namespace:Telerik.Blazor.Components
Assembly:Telerik.Blazor.dll
Syntax:
C#
public class TelerikRecurrenceEndEditor : BaseComponent, IComponent, IHandleEvent, IHandleAfterRender, IDisposable
Inheritance: objectComponentBaseBaseComponentTelerikRecurrenceEndEditor
Implements:
Inherited Members
Constructors
C#
public TelerikRecurrenceEndEditor()
Methods
C#
protected override void BuildRenderTree(RenderTreeBuilder __builder)
Overrides:
Properties
Specifies the end date of the recurrence. The default value is the value specified through the rule.
C#
[Parameter]
public DateTime EndDate { get; set; }
Rule
RecurrenceRule
Gets or sets the recurrence rule.
C#
[Parameter]
public RecurrenceRule Rule { get; set; }
RuleChanged
EventCallback<RecurrenceRule>
Invoked when the user changes the recurrence rule through the provided editors.
C#
[Parameter]
public EventCallback<RecurrenceRule> RuleChanged { get; set; }