Class
AnimationBase

Definition

Namespace:Telerik.Blazor.Components.Common

Assembly:Telerik.Blazor.dll

Syntax:

cs-api-definition
public abstract class AnimationBase : BaseComponent, IComponent, IHandleEvent, IHandleAfterRender, IDisposable

Inheritance: objectComponentBaseBaseComponentAnimationBase

Derived Classes: TelerikAnimationContainer

Implements: IComponentIDisposableIHandleAfterRenderIHandleEvent

Inherited Members BaseComponent.ShouldRender()BaseComponent.OnInitializedAsync()BaseComponent.OnAfterRenderAsync(bool)BaseComponent.Dispose()BaseComponent.InitLocalizer()BaseComponent.ThrowIfParameterIsNull(object, string)BaseComponent.HaveOptionsChanged(IDictionary<string, object>, IDictionary<string, object>)BaseComponent.GetClassString(params string[])BaseComponent.InvokeAsync<T>(string, params object[])BaseComponent.InvokeAsync<T>(string, CancellationToken, params object[])BaseComponent.InvokeVoidAsync(string, params object[])BaseComponent.InvokeComponentMethodAsync<T>(string, params object[])BaseComponent.InvokeComponentMethodAsync<T>(string, CancellationToken, params object[])BaseComponent.InvokeVoidComponentMethodAsync(string, params object[])BaseComponent.InvokeComponentVoidMethodAsync(string, object)BaseComponent.InvokeDisposeAsync()BaseComponent.StateHasChanged()BaseComponent.RootComponentBaseComponent.ClassComponentBase.BuildRenderTree(RenderTreeBuilder)ComponentBase.OnInitialized()ComponentBase.OnParametersSet()ComponentBase.OnParametersSetAsync()ComponentBase.OnAfterRender(bool)ComponentBase.InvokeAsync(Action)ComponentBase.InvokeAsync(Func<Task>)ComponentBase.SetParametersAsync(ParameterView)

Constructors

AnimationBase()

Declaration

cs-api-definition
protected AnimationBase()

Properties

AnimationDuration

Defines the animation duration of the container. Default AnimationDuration is 300ms.

Declaration

cs-api-definition
[Parameter]
public int AnimationDuration { get; set; }

Property Value

int

AnimationType

Defines the animation type of the container. Default value is AnimationType.SlideDown.

Declaration

cs-api-definition
[Parameter]
public AnimationType AnimationType { get; set; }

Property Value

AnimationType

ChildContent

Declaration

cs-api-definition
[Parameter]
public RenderFragment ChildContent { get; set; }

Property Value

RenderFragment

Height

Defines the height of the animation container. Cannot be in percent.

Declaration

cs-api-definition
[Parameter]
public string Height { get; set; }

Property Value

string

HideDelay

Defines the hide delay of the animation container. Default delay is 20ms.

Declaration

cs-api-definition
[Parameter]
public int HideDelay { get; set; }

Property Value

int

Left

Defines the left position of the animation container.

Declaration

cs-api-definition
[Parameter]
public string Left { get; set; }

Property Value

string

ParentClass

Defines class to be added to the k-animation-container element.

Declaration

cs-api-definition
[Parameter]
public string ParentClass { get; set; }

Property Value

string

ParentInlineStyle

Defines inline style to be added to the k-animation-container element.

Declaration

cs-api-definition
[Parameter]
public string ParentInlineStyle { get; set; }

Property Value

string

ShowDelay

Defines the show delay of the animation container. Default delay is 20ms.

Declaration

cs-api-definition
[Parameter]
public int ShowDelay { get; set; }

Property Value

int

Top

Defines the top position of the animation container.

Declaration

cs-api-definition
[Parameter]
public string Top { get; set; }

Property Value

string

Width

Defines the width of the animation container.

Declaration

cs-api-definition
[Parameter]
public string Width { get; set; }

Property Value

string