JTree: setAutoscrolls(boolean b) : JTree « javax.swing « Java by API






JTree: setAutoscrolls(boolean b)

  
import java.awt.BorderLayout;

import javax.swing.Box;
import javax.swing.JFrame;
import javax.swing.JScrollPane;
import javax.swing.JTree;

public class MainClass {

  public static void main(String args[]) {
    JFrame frame = new JFrame("Tree Lines");
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

    Box box = Box.createHorizontalBox();

    JTree tree1 = new JTree();
    JScrollPane scrollPane1 = new JScrollPane(tree1);
    tree1.setAutoscrolls(true);

    JTree tree2 = new JTree();
    tree2.putClientProperty("JTree.lineStyle", "None");
    JScrollPane scrollPane2 = new JScrollPane(tree2);

    box.add(scrollPane1, BorderLayout.WEST);
    box.add(scrollPane2, BorderLayout.EAST);

    frame.add(box, BorderLayout.CENTER);
    frame.setSize(300, 240);
    frame.setVisible(true);
  }
}


           
         
    
  








Related examples in the same category

1.Tree.closedIcon
2.Tree.collapsedIcon
3.Tree.expandedIcon
4.Tree.leafIcon
5.Tree.openIcon
6.JTree.DynamicUtilTreeNode: createChildren(DefaultMutableTreeNode parent, Object children)
7.new JTree()
8.new JTree(TreeNode root)
9.new JTree(Vector vector)
10.JTree: addTreeSelectionListener(TreeSelectionListener tsl)
11.JTree: addTreeWillExpandListener(TreeWillExpandListener tel)
12.JTree: convertValueToText(Object v,boolean s,boolean e,boolean l,int r,boolean h)
13.JTree: getCellRenderer()
14.JTree: getLeadSelectionRow()
15.JTree: getMaxSelectionRow()
16.JTree: getMinSelectionRow()
17.JTree: getNextMatch(String prefix, int startingRow, Bias bias)
18.JTree: getPathForLocation(int x, int y)
19.JTree: getRowHeight()
20.JTree: getSelectionRows()
21.JTree: putClientProperty('JTree.lineStyle', 'None')
22.JTree: setCellEditor(TreeCellEditor editor)
23.JTree: setExpandedState(TreePath path, boolean state)
24.JTree: setRowHeight(int rowHeight)
25.JTree: setTransferHandler(TransferHandler newHandler) (Drag and drop files from file explore)