C# 클래스 Fluqi.Widget.jSlider.Methods

The "Methods" are called after the control has been initialised. If for instance you want to change the value of a property, or invoke "some" action on the control (e.g. "open" or "close") you call the "Method" rather than through the "Options" (as Options is about the initialisation of the control).
상속: Core.Methods
파일 보기 프로젝트 열기: toepoke/Fluqi

공개 메소드들

메소드 설명
Destroy ( ) : void

Remove the slider functionality completely. This will return the element back to its pre-init state.

Disable ( ) : void

Disable the slider.

Enable ( ) : void

Enable the slider.

GetAnimate ( ) : void

Returns [in JavaScript] the current "animate" setting.

GetMax ( ) : void

Returns [in JavaScript] the current "max" setting.

GetMin ( ) : void

Returns [in JavaScript] the current "min" setting.

GetOrientation ( ) : void

Returns [in JavaScript] the current "orientation" setting.

GetRange ( ) : void

Returns [in JavaScript] the current "range" setting.

GetStep ( ) : void

Returns [in JavaScript] the current "step" setting.

GetValue ( ) : void

Gets the value of the spinner. For single handle sliders.

GetValue ( int index ) : void

Gets the values of the slider. For multiple handle or range sliders.

Methods ( Fluqi.Widget.jSlider.Slider sldr ) : System

Constructor

SetAnimate ( Core speed ) : void

Whether to slide handle smoothly when user click outside handle on the bar. Will

SetAnimate ( int newValue ) : void

Whether to slide handle smoothly when user click outside handle on the bar.

SetAnimate ( string speed ) : void

Whether to slide handle smoothly when user click outside handle on the bar.

SetMax ( int newValue ) : void

The maximum value of the slider.

SetMin ( int newValue ) : void

The minimum value of the slider.

SetOrientation ( Core newValue ) : void

This option determines whether the slider has the min at the left, the max at the right or the min at the bottom, the max at the top. Possible values: 'horizontal', 'vertical'.

SetOrientation ( string newValue ) : void

This option determines whether the slider has the min at the left, the max at the right or the min at the bottom, the max at the top. Possible values: 'horizontal', 'vertical'.

SetOrientation ( string newValue, bool inDoubleQuotes ) : void

This option determines whether the slider has the min at the left, the max at the right or the min at the bottom, the max at the top. Possible values: 'horizontal', 'vertical'.

SetOrientationJS ( string newValue ) : void

This option determines whether the slider has the min at the left, the max at the right or the min at the bottom, the max at the top. Possible values: 'horizontal', 'vertical'. This entry point does _not_ add quotes to the input value and is indended for passing JavaScript (that is when rendered, the input value will refer to a JavaScript variable for instance).

SetRange ( bool newValue ) : void

If set to true, the slider will detect if you have two handles and create a stylable range element between these two. Two other possible values are 'min' and 'max'. A min range goes from the slider min to one handle. A max range goes from one handle to the slider max.

SetRangeToMax ( ) : void

Max range goes from one handle to the slider max.

SetRangeToMin ( ) : void

Min range goes from the slider min to one handle.

SetStep ( int newValue ) : void

Determines the size or amount of each interval or step the slider takes between min and max. The full specified value range of the slider (max - min) needs to be evenly divisible by the step.

SetValue ( int newValue ) : void

Sets the value of the slider. For single handle sliders.

SetValue ( int index, int newValue ) : void

Sets the values of the slider. For multiple handle or range sliders.

Widget ( ) : void

Returns the .ui-slider element.

메소드 상세

Destroy() 공개 메소드

Remove the slider functionality completely. This will return the element back to its pre-init state.
public Destroy ( ) : void
리턴 void

Disable() 공개 메소드

Disable the slider.
public Disable ( ) : void
리턴 void

Enable() 공개 메소드

Enable the slider.
public Enable ( ) : void
리턴 void

GetAnimate() 공개 메소드

Returns [in JavaScript] the current "animate" setting.
public GetAnimate ( ) : void
리턴 void

GetMax() 공개 메소드

Returns [in JavaScript] the current "max" setting.
public GetMax ( ) : void
리턴 void

GetMin() 공개 메소드

Returns [in JavaScript] the current "min" setting.
public GetMin ( ) : void
리턴 void

GetOrientation() 공개 메소드

Returns [in JavaScript] the current "orientation" setting.
public GetOrientation ( ) : void
리턴 void

GetRange() 공개 메소드

Returns [in JavaScript] the current "range" setting.
public GetRange ( ) : void
리턴 void

GetStep() 공개 메소드

Returns [in JavaScript] the current "step" setting.
public GetStep ( ) : void
리턴 void

GetValue() 공개 메소드

Gets the value of the spinner. For single handle sliders.
public GetValue ( ) : void
리턴 void

GetValue() 공개 메소드

Gets the values of the slider. For multiple handle or range sliders.
public GetValue ( int index ) : void
index int
리턴 void

Methods() 공개 메소드

Constructor
public Methods ( Fluqi.Widget.jSlider.Slider sldr ) : System
sldr Fluqi.Widget.jSlider.Slider Slider object to call
리턴 System

SetAnimate() 공개 메소드

Whether to slide handle smoothly when user click outside handle on the bar. Will
public SetAnimate ( Core speed ) : void
speed Core New animate setting - "slow", "normal", or "fast"
리턴 void

SetAnimate() 공개 메소드

Whether to slide handle smoothly when user click outside handle on the bar.
public SetAnimate ( int newValue ) : void
newValue int New animate setting - in milliseconds
리턴 void

SetAnimate() 공개 메소드

Whether to slide handle smoothly when user click outside handle on the bar.
public SetAnimate ( string speed ) : void
speed string New animate setting - "slow", "normal", or "fast"
리턴 void

SetMax() 공개 메소드

The maximum value of the slider.
public SetMax ( int newValue ) : void
newValue int New max setting
리턴 void

SetMin() 공개 메소드

The minimum value of the slider.
public SetMin ( int newValue ) : void
newValue int New min setting
리턴 void

SetOrientation() 공개 메소드

This option determines whether the slider has the min at the left, the max at the right or the min at the bottom, the max at the top. Possible values: 'horizontal', 'vertical'.
public SetOrientation ( Core newValue ) : void
newValue Core New orientation setting
리턴 void

SetOrientation() 공개 메소드

This option determines whether the slider has the min at the left, the max at the right or the min at the bottom, the max at the top. Possible values: 'horizontal', 'vertical'.
public SetOrientation ( string newValue ) : void
newValue string New orientation setting
리턴 void

SetOrientation() 공개 메소드

This option determines whether the slider has the min at the left, the max at the right or the min at the bottom, the max at the top. Possible values: 'horizontal', 'vertical'.
public SetOrientation ( string newValue, bool inDoubleQuotes ) : void
newValue string New orientation setting
inDoubleQuotes bool /// true - double quotes (") /// false - single quotes (') ///
리턴 void

SetOrientationJS() 공개 메소드

This option determines whether the slider has the min at the left, the max at the right or the min at the bottom, the max at the top. Possible values: 'horizontal', 'vertical'. This entry point does _not_ add quotes to the input value and is indended for passing JavaScript (that is when rendered, the input value will refer to a JavaScript variable for instance).
public SetOrientationJS ( string newValue ) : void
newValue string New orientation setting
리턴 void

SetRange() 공개 메소드

If set to true, the slider will detect if you have two handles and create a stylable range element between these two. Two other possible values are 'min' and 'max'. A min range goes from the slider min to one handle. A max range goes from one handle to the slider max.
public SetRange ( bool newValue ) : void
newValue bool New range setting
리턴 void

SetRangeToMax() 공개 메소드

Max range goes from one handle to the slider max.
public SetRangeToMax ( ) : void
리턴 void

SetRangeToMin() 공개 메소드

Min range goes from the slider min to one handle.
public SetRangeToMin ( ) : void
리턴 void

SetStep() 공개 메소드

Determines the size or amount of each interval or step the slider takes between min and max. The full specified value range of the slider (max - min) needs to be evenly divisible by the step.
public SetStep ( int newValue ) : void
newValue int New step setting
리턴 void

SetValue() 공개 메소드

Sets the value of the slider. For single handle sliders.
public SetValue ( int newValue ) : void
newValue int
리턴 void

SetValue() 공개 메소드

Sets the values of the slider. For multiple handle or range sliders.
public SetValue ( int index, int newValue ) : void
index int
newValue int
리턴 void

Widget() 공개 메소드

Returns the .ui-slider element.
public Widget ( ) : void
리턴 void