TelerikCheckpoint
Class
Marks a transcript restore point and exposes a restore or redo action.
Definition
Namespace:Telerik.Blazor.Components
Assembly:Telerik.Blazor.dll
Syntax:
C#
public class TelerikCheckpoint : BaseComponent, IComponent, IHandleEvent, IHandleAfterRender, IDisposable
Inheritance: objectComponentBaseBaseComponentTelerikCheckpoint
Implements:
Inherited Members
Constructors
C#
public TelerikCheckpoint()
Properties
Customizes the content of the checkpoint. If not set, a default message is displayed based on the current state.
C#
[Parameter]
public RenderFragment? ChildContent { get; set; }
Fires when the checkpoint is clicked. The current state is passed as an argument.
C#
[Parameter]
public EventCallback<CheckpointState> OnClick { get; set; }
Current checkpoint state. Default is StartOver.
C#
[Parameter]
public CheckpointState State { get; set; }
Methods
C#
protected override void BuildRenderTree(RenderTreeBuilder __builder)
Overrides: