C# Класс Fluqi.Widget.jSlider.Options

A set of properties to apply to a set of jQuery UI Slider.
Properties not yet supported:
Наследование: Core.Options
Показать файл Открыть проект

Открытые методы

Метод Описание
SetAnimate ( Core speed ) : Options

Whether to slide handle smoothly when user click outside handle on the bar. Currently can be the constants defined by jQuery - "slow", "normal", or "fast".

SetAnimate ( bool animate ) : Options

Flags wether the slide handle smoothly when user clicks outside the handle on the bar.

SetAnimate ( int animateMillis ) : Options

Whether to slide handle smoothly when user click outside handle on the bar. The number of milliseconds to run the animation (e.g. 1000)

SetAnimate ( string animate ) : Options

Whether to slide handle smoothly when user click outside handle on the bar. Will accept a string representing one of the three predefined speeds ("slow", "normal", or "fast")

SetDisabled ( bool disabled ) : Options

Disables (true) or enables (false) the control. Can be set when initialising (first creating) the control.

SetMax ( int max ) : Options

The maximum value of the slider.

SetMin ( int min ) : Options

The minimum value of the slider.

SetOrientation ( Core orientation ) : Options

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 orientation ) : Options

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'.

SetRange ( bool range ) : Options

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.

SetRange ( string range ) : Options

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.

SetSize ( string size ) : Options

Sets the size (it's a string, so whatever units you want) of the slider. For horizontal slider this is the width or the div (100%), for vertical slider this is the height of the div (default 5em).

SetStep ( int step ) : Options

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 value ) : Options

The text to display on the trigger button. Use in conjunction with showOn equal to 'button' or 'both'.

SetValues ( ) : Options

This option can be used to specify multiple handles. If range is set to true, the length of 'values' should be 2.

SetValues ( List values ) : Options

This option can be used to specify multiple handles. If range is set to true, the length of 'values' should be 2.

SetValues ( string values ) : Options

This option can be used to specify multiple handles. If range is set to true, the length of 'values' should be 2. This entry point expects a number separated list (e.g. "1,3,5")

Описание методов

SetAnimate() публичный Метод

Whether to slide handle smoothly when user click outside handle on the bar. Currently can be the constants defined by jQuery - "slow", "normal", or "fast".
public SetAnimate ( Core speed ) : Options
speed Core
Результат Options

SetAnimate() публичный Метод

Flags wether the slide handle smoothly when user clicks outside the handle on the bar.
public SetAnimate ( bool animate ) : Options
animate bool
Результат Options

SetAnimate() публичный Метод

Whether to slide handle smoothly when user click outside handle on the bar. The number of milliseconds to run the animation (e.g. 1000)
public SetAnimate ( int animateMillis ) : Options
animateMillis int
Результат Options

SetAnimate() публичный Метод

Whether to slide handle smoothly when user click outside handle on the bar. Will accept a string representing one of the three predefined speeds ("slow", "normal", or "fast")
public SetAnimate ( string animate ) : Options
animate string
Результат Options

SetDisabled() публичный Метод

Disables (true) or enables (false) the control. Can be set when initialising (first creating) the control.
public SetDisabled ( bool disabled ) : Options
disabled bool
Результат Options

SetMax() публичный Метод

The maximum value of the slider.
public SetMax ( int max ) : Options
max int
Результат Options

SetMin() публичный Метод

The minimum value of the slider.
public SetMin ( int min ) : Options
min int
Результат Options

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 orientation ) : Options
orientation Core
Результат Options

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 orientation ) : Options
orientation string
Результат Options

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 range ) : Options
range bool
Результат Options

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 ( string range ) : Options
range string
Результат Options

SetSize() публичный Метод

Sets the size (it's a string, so whatever units you want) of the slider. For horizontal slider this is the width or the div (100%), for vertical slider this is the height of the div (default 5em).
public SetSize ( string size ) : Options
size string
Результат Options

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 step ) : Options
step int
Результат Options

SetValue() публичный Метод

The text to display on the trigger button. Use in conjunction with showOn equal to 'button' or 'both'.
public SetValue ( int value ) : Options
value int
Результат Options

SetValues() публичный Метод

This option can be used to specify multiple handles. If range is set to true, the length of 'values' should be 2.
public SetValues ( ) : Options
Результат Options

SetValues() публичный Метод

This option can be used to specify multiple handles. If range is set to true, the length of 'values' should be 2.
public SetValues ( List values ) : Options
values List
Результат Options

SetValues() публичный Метод

This option can be used to specify multiple handles. If range is set to true, the length of 'values' should be 2. This entry point expects a number separated list (e.g. "1,3,5")
public SetValues ( string values ) : Options
values string
Результат Options