Class AnimationBase
Inherited Members
Namespace: Telerik.Blazor.Components.Common
Assembly: Telerik.Blazor.dll
Syntax
public abstract class AnimationBase : BaseComponent, IDisposable
Constructors
AnimationBase()
Declaration
protected AnimationBase()
Properties
AnimationDuration
Defines the animation duration of the container. Default AnimationDuration is 300ms.
Declaration
public int AnimationDuration { get; set; }
Property Value
System.Int32
|
AnimationType
Defines the animation type of the container. Default value is AnimationType.SlideDown.
Declaration
public AnimationType AnimationType { get; set; }
Property Value
AnimationType
|
ChildContent
Declaration
public RenderFragment ChildContent { get; set; }
Property Value
Microsoft.AspNetCore.Components.RenderFragment
|
Height
Defines the height of the animation container. Cannot be in percent.
Declaration
public string Height { get; set; }
Property Value
System.String
|
HideDelay
Defines the hide delay of the animation container. Default delay is 20ms.
Declaration
public int HideDelay { get; set; }
Property Value
System.Int32
|
Left
Defines the left position of the animation container.
Declaration
public string Left { get; set; }
Property Value
System.String
|
ParentClass
Defines class to be added to the k-animation-container element.
Declaration
public string ParentClass { get; set; }
Property Value
System.String
|
ParentInlineStyle
Defines inline style to be added to the k-animation-container element.
Declaration
public string ParentInlineStyle { get; set; }
Property Value
System.String
|
ShowDelay
Defines the show delay of the animation container. Default delay is 20ms.
Declaration
public int ShowDelay { get; set; }
Property Value
System.Int32
|
Top
Defines the top position of the animation container.
Declaration
public string Top { get; set; }
Property Value
System.String
|
Width
Defines the width of the animation container.
Declaration
public string Width { get; set; }
Property Value
System.String
|