Example usage for javax.swing JSlider getExtent

List of usage examples for javax.swing JSlider getExtent

Introduction

In this page you can find the example usage for javax.swing JSlider getExtent.

Prototype

public int getExtent() 

Source Link

Document

Returns the "extent" from the BoundedRangeModel.

Usage

From source file:Main.java

public static void main(String[] argv) throws Exception {
    JSlider slider = new JSlider();

    int extent = slider.getExtent();
}