Skip to content

Commit 38ab4c2

Browse files
Slider Control Comment updated
1 parent b4b8e87 commit 38ab4c2

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/visage/javafx/scene/control/Slider.visage

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public class Slider extends Control {
6060
}
6161

6262
/**
63-
* <p>The unit distance between major tick marks. For example, if the min is 0 and the max is 100 and the majorTickUnit is 25, then there would be 5 tick marks: one at position 0, one at position 25, one at position 50, one at position 75, and a final one at position 100.</p>
63+
* <p>The maximum value represented by this Slider.</p>
6464
**/
6565
public var max:Number on replace{
6666
if((isInitialized(this) or max != 0 ) and (max > min))
@@ -70,7 +70,7 @@ public class Slider extends Control {
7070
}
7171

7272
/**
73-
* <p>The unit distance between major tick marks. For example, if the min is 0 and the max is 100 and the majorTickUnit is 25, then there would be 5 tick marks: one at position 0, one at position 25, one at position 50, one at position 75, and a final one at position 100.</p>
73+
* <p>The minimum value represented by this Slider.</p>
7474
**/
7575
public var min:Number on replace{
7676
if((isInitialized(this) or min != 0 ) and (min < max))
@@ -80,7 +80,7 @@ public class Slider extends Control {
8080
}
8181

8282
/**
83-
* <p>The unit distance between major tick marks. For example, if the min is 0 and the max is 100 and the majorTickUnit is 25, then there would be 5 tick marks: one at position 0, one at position 25, one at position 50, one at position 75, and a final one at position 100.</p>
83+
* <p>The number of minor ticks to place between any two major ticks.</p>
8484
**/
8585
public var minorTickCount:Number on replace{
8686
if((isInitialized(this) or minorTickCount != 0 ) and (minorTickCount >=0))
@@ -90,7 +90,7 @@ public class Slider extends Control {
9090
}
9191

9292
/**
93-
* <p>Determines whether the user toggling the CheckBox should cycle through all three states: checked, unchecked, and undefined.</p>
93+
* <p>Indicates that the labels for tick marks should be shown.</p>
9494
**/
9595
public var showTickLabels:Boolean on replace oldValue{
9696
if(isInitialized(this) or not oldValue){
@@ -99,7 +99,7 @@ public class Slider extends Control {
9999
}
100100

101101
/**
102-
* <p>Determines whether the user toggling the CheckBox should cycle through all three states: checked, unchecked, and undefined.</p>
102+
* <p>Specifies whether the Skin implementation should show tick marks.</p>
103103
**/
104104
public var showTickMarks:Boolean on replace oldValue{
105105
if(isInitialized(this) or not oldValue){
@@ -108,7 +108,7 @@ public class Slider extends Control {
108108
}
109109

110110
/**
111-
* <p>Determines whether the user toggling the CheckBox should cycle through all three states: checked, unchecked, and undefined.</p>
111+
* <p>Indicates whether the value of the Slider should always be aligned with the tick marks.</p>
112112
**/
113113
public var snapToTicks:Boolean on replace oldValue{
114114
if(isInitialized(this) or not oldValue){
@@ -117,7 +117,7 @@ public class Slider extends Control {
117117
}
118118

119119
/**
120-
* <p>Determines whether the user toggling the CheckBox should cycle through all three states: checked, unchecked, and undefined.</p>
120+
* <p>When true, indicates the current value of this Slider is changing.</p>
121121
**/
122122
public var valueChanging:Boolean on replace oldValue{
123123
if(isInitialized(this) or not oldValue){
@@ -126,7 +126,7 @@ public class Slider extends Control {
126126
}
127127

128128
/**
129-
* <p>Determines whether the user toggling the CheckBox should cycle through all three states: checked, unchecked, and undefined.</p>
129+
* <p>The current value represented by this Slider.</p>
130130
**/
131131
public var value:Number on replace{
132132
if(isInitialized(this) or value !=0){

0 commit comments

Comments
 (0)