PopupAnimationBuilder

Methods

Enable(System.Boolean)

Enables or disables the animation.

Parameters

enable - System.Boolean

Specifies whether the animation is enabled.

Example

Razor
 
             .Animation(animation => animation.Enable(false))
             

Open(System.Action)

The Open settings.

Parameters

effectsAction - System.Action<EffectsBuilder>

The configuration action.

Example

Razor
 
             .Animation(animation => animation.Open(open => open.Duration(600)))
             

Close(System.Action)

The Close settings.

Parameters

effectsAction - System.Action<EffectsBuilder>

The configuration action.

Example

Razor
 
             .Animation(animation => animation.Close(close => close.Duration(200)))