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

파일 보기 프로젝트 열기: toepoke/Fluqi 1 사용 예제들

공개 메소드들

메소드 설명
Animation ( TextWriter writer, string key ) : System

Constructor

GetControlScript ( ) : string

Writes out the initialisation JavaScript to configure the tabs object client-side.

Useful if you want to declare your own document.ready and add in the initialisation yourself (if you have additional initialisation you want to perform for instance).

GetControlScript ( int tabDepth ) : string

Writes out the calling script for the jQuery Tabs plugin, adding options that have been a defined.

GetStartUpScript ( ) : string

Renders (and returns) the JavaScript required to initialise the control with the required options. A jQuery document.ready section is wrapped around the script.

GetStartUpScript ( bool incDocReady ) : string

Writes out the document.ready, text/JavaScript and tabs initialisation script to the Response.

Useful if you want more control over where the initialisation takes place.

Render ( ) : void

There is not underlying control for a Animation object to render onto. The "Render" method merely calls the initialisation routine and adds it into the outgoing Response object

RenderStartUpScript ( ) : void

Writes out the document.ready, text/JavaScript and Animation initialisation script to the Response.

Useful if you want more control over where the initialisation takes place.

RenderStartUpScript ( bool incDocReady ) : void

Writes out the document.ready, text/JavaScript and Animation initialisation script to the Response.

Useful if you want more control over where the initialisation takes place.

메소드 상세

Animation() 공개 메소드

Constructor
public Animation ( TextWriter writer, string key ) : System
writer System.IO.TextWriter Response stream to write the control to.
key string ID of the button, this must be unique for the page
리턴 System

GetControlScript() 공개 메소드

Writes out the initialisation JavaScript to configure the tabs object client-side.
Useful if you want to declare your own document.ready and add in the initialisation yourself (if you have additional initialisation you want to perform for instance).
public GetControlScript ( ) : string
리턴 string

GetControlScript() 공개 메소드

Writes out the calling script for the jQuery Tabs plugin, adding options that have been a defined.
public GetControlScript ( int tabDepth ) : string
tabDepth int /// How far to indent the tabs in the script code. ///
리턴 string

GetStartUpScript() 공개 메소드

Renders (and returns) the JavaScript required to initialise the control with the required options. A jQuery document.ready section is wrapped around the script.
public GetStartUpScript ( ) : string
리턴 string

GetStartUpScript() 공개 메소드

Writes out the document.ready, text/JavaScript and tabs initialisation script to the Response.
Useful if you want more control over where the initialisation takes place.
public GetStartUpScript ( bool incDocReady ) : string
incDocReady bool /// If true wraps the initialisation script with a jQuery document.ready section /// If false only the control initialisation script is written. ///
리턴 string

Render() 공개 메소드

There is not underlying control for a Animation object to render onto. The "Render" method merely calls the initialisation routine and adds it into the outgoing Response object
public Render ( ) : void
리턴 void

RenderStartUpScript() 공개 메소드

Writes out the document.ready, text/JavaScript and Animation initialisation script to the Response.
Useful if you want more control over where the initialisation takes place.
public RenderStartUpScript ( ) : void
리턴 void

RenderStartUpScript() 공개 메소드

Writes out the document.ready, text/JavaScript and Animation initialisation script to the Response.
Useful if you want more control over where the initialisation takes place.
public RenderStartUpScript ( bool incDocReady ) : void
incDocReady bool /// If true the control initialisation is wrapped in a jQuery document.ready and script /// declaration. /// If false no wrapping takes place. ///
리턴 void