fix doc bug for `gauge%'
original commit: afeeb56fe8495e043d1b6485eadcde88b1a637b0
This commit is contained in:
parent
3c7fb4808d
commit
0f37e9e790
|
@ -49,26 +49,26 @@ The @racket[style] list must include either @racket['horizontal],
|
||||||
}
|
}
|
||||||
|
|
||||||
@defmethod[(get-range)
|
@defmethod[(get-range)
|
||||||
(integer-in 1 10000)]{
|
(integer-in 1 1000000)]{
|
||||||
Returns the range (maximum value) of the gauge.
|
Returns the range (maximum value) of the gauge.
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@defmethod[(get-value)
|
@defmethod[(get-value)
|
||||||
(integer-in 0 10000)]{
|
(integer-in 0 1000000)]{
|
||||||
|
|
||||||
Returns the gauge's current value.
|
Returns the gauge's current value.
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@defmethod[(set-range [range (integer-in 1 10000)])
|
@defmethod[(set-range [range (integer-in 1 1000000)])
|
||||||
void?]{
|
void?]{
|
||||||
|
|
||||||
Sets the range (maximum value) of the gauge.
|
Sets the range (maximum value) of the gauge.
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@defmethod[(set-value [pos (integer-in 0 10000)])
|
@defmethod[(set-value [pos (integer-in 0 1000000)])
|
||||||
void?]{
|
void?]{
|
||||||
|
|
||||||
Sets the gauge's current value. If the specified value is larger than
|
Sets the gauge's current value. If the specified value is larger than
|
||||||
|
|
Loading…
Reference in New Issue
Block a user