Peter Penzov
Peter Penzov

Reputation: 1668

Disable TitledPane Expand

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

Answers (1)

vaishali33
vaishali33

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

Related Questions