JavaFX Tutorial - Java FlowPane.getAlignment()








Syntax

FlowPane.getAlignment() has the following syntax.

public final Pos getAlignment()

Example

In the following code shows how to use FlowPane.getAlignment() method.

import javafx.application.Application;
import javafx.geometry.Orientation;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.layout.FlowPane;
import javafx.stage.Stage;
/*from   www . j ava 2s .  c o  m*/
import javax.swing.GroupLayout.Alignment;

public class Main extends Application {
  public static void main(String[] args) {
    Application.launch(args);
  }

  @Override
  public void start(Stage primaryStage) {
    FlowPane flowPane = new FlowPane(Orientation.HORIZONTAL,20,20);
    flowPane.setPrefWrapLength(210);                 
    Button btn = new Button();
         
    for(int i=0; i<8; i++){
      btn = new Button("Button");
      btn.setPrefSize(100, 50);
      flowPane.getChildren().add(btn);
    }    
    System.out.println(flowPane.getAlignment());
    
    Scene scene = new Scene(flowPane);
    primaryStage.setScene(scene);
    primaryStage.show();
  }
}