Example usage for javax.swing JTable addColumnSelectionInterval

List of usage examples for javax.swing JTable addColumnSelectionInterval

Introduction

In this page you can find the example usage for javax.swing JTable addColumnSelectionInterval.

Prototype

public void addColumnSelectionInterval(int index0, int index1) 

Source Link

Document

Adds the columns from index0 to index1, inclusive, to the current selection.

Usage

From source file:Main.java

public static void main(String[] argv) throws Exception {
    int rows = 10;
    int cols = 5;
    JTable table = new JTable(rows, cols);

    table.setSelectionMode(ListSelectionModel.MULTIPLE_INTERVAL_SELECTION);

    table.setColumnSelectionAllowed(true);
    table.setRowSelectionAllowed(false);

    // Select an additional range of columns - columns 1 to 2
    table.addColumnSelectionInterval(1, 2);
}