Change Table Borders with UIManager

I’m looking to set all table borders in a vision project with UIManager.put. According to Swing UIManager Keys (thebadprogrammer.com) I do not see a Table.border key. Is there a different key that should be used to do this?

Looks like I figured it out…

UIManager.put("Table.scrollPaneBorder",BorderFactory.createLineBorder(ColorUIResource(23,23,23),2))
1 Like