C# 클래스 Fluqi.Utilities.jAnimation.Options

상속: Core.Options
파일 보기 프로젝트 열기: toepoke/Fluqi

공개 메소드들

메소드 설명
Finish ( ) : Animation

Used to flag that configuration of Options has finished, and returns the Animation object so we can continue defining Tabs attributes.

Options ( Animation ani, string caller ) : System

Constructor

SetDisabled ( ) : Options

Turns off the animation

SetDuration ( Core speed ) : Options

The duration the effect should play for.

SetDuration ( int duration ) : Options

The duration the effect should play for (in milliseconds).

SetDuration ( string duration ) : Options

The duration the effect should play for.

SetEasing ( Core easing ) : Options

The easing effect to use when showing/hiding.

SetEasing ( string easing ) : Options

The easing effect to use when showing/hiding.

SetEffect ( Core animation ) : Options

The effect to use when showing/hiding.

SetEffect ( string effect ) : Options

The effect to use when showing/hiding.

SetJSON ( string json ) : Options

Sets the effects as a JSON object

보호된 메소드들

메소드 설명
DiscoverOptions ( Core options ) : void

Builds up a set of options the control can use (i.e. jQuery UI control supports). Which is then used in rendering the JavaScript required to initialise the control properties.

GetAnimationScriptOption ( ) : Core.ScriptOption

Gets a script option defining the Animation options (this is exposed as the Animation control is used in other controls).

GetAnimationScriptOption ( bool asChild ) : Core.ScriptOption

Gets a script option defining the Animation options (this is exposed as the Animation control is used in other controls).

Reset ( ) : void

Resets all the control properties back to their default settings (i.e. the defaults as documented by jQuery UI library

메소드 상세

DiscoverOptions() 보호된 메소드

Builds up a set of options the control can use (i.e. jQuery UI control supports). Which is then used in rendering the JavaScript required to initialise the control properties.
protected DiscoverOptions ( Core options ) : void
options Core Collection to add the identified options to
리턴 void

Finish() 공개 메소드

Used to flag that configuration of Options has finished, and returns the Animation object so we can continue defining Tabs attributes.
public Finish ( ) : Animation
리턴 Animation

GetAnimationScriptOption() 보호된 메소드

Gets a script option defining the Animation options (this is exposed as the Animation control is used in other controls).
protected GetAnimationScriptOption ( ) : Core.ScriptOption
리턴 Core.ScriptOption

GetAnimationScriptOption() 보호된 메소드

Gets a script option defining the Animation options (this is exposed as the Animation control is used in other controls).
protected GetAnimationScriptOption ( bool asChild ) : Core.ScriptOption
asChild bool Flags that this option should be added a child
리턴 Core.ScriptOption

Options() 공개 메소드

Constructor
public Options ( Animation ani, string caller ) : System
ani Animation Animation object to define options for
caller string caller
리턴 System

Reset() 보호된 메소드

Resets all the control properties back to their default settings (i.e. the defaults as documented by jQuery UI library
protected Reset ( ) : void
리턴 void

SetDisabled() 공개 메소드

Turns off the animation
public SetDisabled ( ) : Options
리턴 Options

SetDuration() 공개 메소드

The duration the effect should play for.
public SetDuration ( Core speed ) : Options
speed Core Duration enum to use.
리턴 Options

SetDuration() 공개 메소드

The duration the effect should play for (in milliseconds).
public SetDuration ( int duration ) : Options
duration int Duration (milliseconds) to use.
리턴 Options

SetDuration() 공개 메소드

The duration the effect should play for.
public SetDuration ( string duration ) : Options
duration string Duration to use, can be milliseconds, or "fast", "slow" or "normal".
리턴 Options

SetEasing() 공개 메소드

The easing effect to use when showing/hiding.
public SetEasing ( Core easing ) : Options
easing Core Easing enum to use
리턴 Options

SetEasing() 공개 메소드

The easing effect to use when showing/hiding.
public SetEasing ( string easing ) : Options
easing string Easing name to use
리턴 Options

SetEffect() 공개 메소드

The effect to use when showing/hiding.
public SetEffect ( Core animation ) : Options
animation Core Effect enum to use
리턴 Options

SetEffect() 공개 메소드

The effect to use when showing/hiding.
public SetEffect ( string effect ) : Options
effect string Effect as a string to use
리턴 Options

SetJSON() 공개 메소드

Sets the effects as a JSON object
public SetJSON ( string json ) : Options
json string JSON object to use
리턴 Options