JSlider: getMaximum() : JSlider « javax.swing « Java by API
- Java by API
- javax.swing
- JSlider
JSlider: getMaximum()
import javax.swing.JSlider;
public class Main {
public static void main(String[] argv) throws Exception {
JSlider slider = new JSlider();
// Get the current value
int value = slider.getValue();
// Get the minimum value
int min = slider.getMinimum();
// Get the maximum value
int max = slider.getMaximum();
}
}
Related examples in the same category