Example usage for Java javafx.scene.control TitledPane fields, constructors, methods, implement or subclass
The text is from its open source code.
TitledPane(String title, Node content) Creates a new TitledPane with a title and content. | |
TitledPane() Creates a new TitledPane with no title or content. |
BooleanProperty | animatedProperty() The animated state of the TitledPane. |
BooleanProperty | collapsibleProperty() The collapsible state of the TitledPane. |
ObjectProperty | contentProperty() The content of the TitledPane. |
BooleanProperty | expandedProperty() The expanded state of the TitledPane. |
Node | getContent() The content of the TitledPane. |
boolean | isAnimated() Returns the animated state of the TitledPane. |
boolean | isCollapsible() Returns the collapsible state of the TitlePane. |
boolean | isExpanded() |
void | setAnimated(boolean value) Specifies how the TitledPane should open and close. |
void | setCollapsible(boolean value) Specifies if the TitledPane can be collapsed. |
void | setContent(Node value) The content of the TitlePane which can be any Node such as UI controls or groups of nodes added to a layout container. |
void | setDisable(boolean value) |
void | setExpanded(boolean value) Sets the expanded state of the TitledPane. |
void | setGraphic(Node value) |
void | setOpacity(double value) |
void | setPrefWidth(double value) |
void | setText(String value) |
void | setTooltip(Tooltip value) |