Reputation: 1668
How I can disable TitledPane expand?
TitledPane pane = new TitledPane("Connections", content);
I can't find any information about this on Google.
Upvotes: 0
Views: 2414
Reputation: 117
You dont need to google, you can simply check javadoc or Ctrl+space will show you all methods for that class. To answer your question its
titledPane.setCollapsible(false);
Upvotes: 3