Biology Forums - Study Force

Science-Related Homework Help Computer Studies Topic started by: Alek Hsiang on May 5, 2020



Title: To add two nodes node1 and node2 to the the first row in a GridPane pane, use ________.
Post by: Alek Hsiang on May 5, 2020
To add two nodes node1 and node2 to the the first row in a GridPane pane, use ________.

▸ pane.addRow(0, node1, node2);

▸ pane.add(node1, 0, 0); pane.add(node2, 1, 0);

▸ pane.add(node1, 0, 1); pane.add(node2, 1, 1);

▸ pane.add(node1, node2, 0);

▸ pane.addRow(1, node1, node2);


Title: To add two nodes node1 and node2 to the the first row in a GridPane pane, use ________.
Post by: kwashington67 on May 5, 2020
Content hidden