CheckBox scaleOnScrollCB = new CheckBox();
scaleOnScrollCB.disableProperty().bind(activateCB.selectedProperty().not());
scalableOnScroll.bind(scaleOnScrollCB.selectedProperty());
CheckBox resizeOnScrollCB = new CheckBox();
resizeOnScrollCB.disableProperty().bind(activateCB.selectedProperty().not());
resizableOnScroll.bind(resizeOnScrollCB.selectedProperty());
final Label secHeading = new Label("Configurable Properties :");
secHeading.getStyleClass().add("sectionHeading");
secHeading.setPrefHeight(40);