C# 클래스 Fluqi.Widget.jTab.AnimationOptions

Models the Animation child for setting placement of the tab control.
파일 보기 프로젝트 열기: toepoke/Fluqi

공개 메소드들

메소드 설명
AnimationOptions ( jTab tabOptions, string caller ) : System

Constructor

Finish ( ) : jTab.Options

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

SetDuration ( Core speed ) : AnimationOptions

The duration the effect should play for.

SetDuration ( int duration ) : AnimationOptions

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

SetDuration ( string duration ) : AnimationOptions

The duration the effect should play for.

SetEffect ( Core effect ) : AnimationOptions

The effect to use when showing/hiding.

SetEffect ( string effect ) : AnimationOptions

The effect to use when showing/hiding.

메소드 상세

AnimationOptions() 공개 메소드

Constructor
public AnimationOptions ( jTab tabOptions, string caller ) : System
tabOptions jTab Tab options object
caller string /// Specifies the type of caller using the animation. For instance it's common for the animation properties /// to be used by both "show" and "hide" methods on a widget. We need to differentiate between the two /// when rendering the script output. ///
리턴 System

Finish() 공개 메소드

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

SetDuration() 공개 메소드

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

SetDuration() 공개 메소드

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

SetDuration() 공개 메소드

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

SetEffect() 공개 메소드

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

SetEffect() 공개 메소드

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