📄 bislider.xml
字号:
<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="api.xsl"?><class name="BiSlider" extends="BiComponent"> <description> This component is used to show a slider control. </description> <arguments> <argument name="sOrientation" type="String" description="The orientation of the progress bar" optional="true" default="horizontal"/> </arguments> <staticMethods/> <staticFields/> <methods/> <properties> <property name="orientation" type="String" set="true" get="true"> <description> The orientation of the slider. Valid values are:<br/> <br/> <code>horizontal</code><br/> <code>vertical</code> </description> </property> <property name="unitIncrement" type="Number" set="true" get="true"> <description> The amount to increase the slider when using the arrow keys and the mouse wheel. </description> </property> <property name="blockIncrement" type="Number" set="true" get="true"> <description> The amount to increase the slider when using the page up and page down keys as well as the amount to change the slider when the mouse is pressed on the slider (and not on the handle). </description> </property> <property name="maximum" type="Number" description="The maximum value for the component" get="true" set="true"/> <property name="minimum" type="Number" description="The minimum value for the component" get="true" set="true"/> <property name="value" type="Number" description="The value for the component" get="true" set="true"/> </properties> <events> <event name="change"> <description> This event is fired when the <link>maximum</link>, <link>minimum</link> or <link>maximum</link> properties are changed. </description> <type><link class="BiEvent">BiEvent</link></type> </event> </events> <remarks> The <link class="BiRangeModel" field="maximum">maximum</link>, <link class="BiRangeModel" field="minimum">minimum</link> and <link class="BiRangeModel" field="value">value</link> are always integers. When setting these, these are rounded to the nearest smaller integer.<br/> <br/> The following is always true for the properties of a slider:<br/> <br/> <code>minimum <= value <= maximum</code> </remarks></class>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -