scalafx.scene.layout

GridPane

object GridPane

Source
GridPane.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. GridPane
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. val Remaining: Int

    Sentinel value which may be set on a child's row/column span constraint to indicate that it should span the remaining rows/columns.

  7. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  8. def clearConstraints(child: javafx.scene.Node): Unit

    Removes all gridpane constraints from the child node.

  9. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  10. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  11. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  12. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  13. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  14. def getColumnIndex(child: Node): Integer

    Returns the child's column index constraint if set.

  15. def getColumnSpan(child: Node): Integer

    Returns the child's column-span constraint if set.

  16. def getHalignment(child: Node): HPos

    Returns the child's halignment constraint if set.

  17. def getHgrow(child: Node): javafx.scene.layout.Priority

    Returns the child's hgrow constraint if set.

  18. def getMargin(child: Node): Insets

    Returns the child's margin constraint if set.

  19. def getRowIndex(child: Node): Integer

    Returns the child's row index constraint if set.

  20. def getRowSpan(child: Node): Integer

    Returns the child's row-span constraint if set.

  21. def getValignment(child: Node): VPos

    Returns the child's valignment constraint if set.

  22. def getVgrow(child: Node): javafx.scene.layout.Priority

    Returns the child's vgrow constraint if set.

  23. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  24. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  25. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  26. final def notify(): Unit

    Definition Classes
    AnyRef
  27. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  28. def setColumnIndex(child: Node, value: Int): Unit

    Sets the column index for the child when contained by a gridpane so that it will be positioned starting in that column of the gridpane.

  29. def setColumnSpan(child: Node, value: Int): Unit

    Sets the column span for the child when contained by a gridpane so that it will span that number of columns horizontally.

  30. def setConstraints(child: Node, columnIndex: Int, rowIndex: Int, columnspan: Int, rowspan: Int, halignment: HPos, valignment: VPos, hgrow: Priority, vgrow: Priority, margin: Insets): Unit

    Sets the grid position, spans, alignment, grow priorities, and margin for the child when contained in a gridpane.

  31. def setConstraints(child: Node, columnIndex: Int, rowIndex: Int, columnspan: Int, rowspan: Int, halignment: HPos, valignment: VPos, hgrow: Priority, vgrow: Priority): Unit

    Sets the grid position, spans, and alignment for the child when contained in a gridpane.

  32. def setConstraints(child: Node, columnIndex: Int, rowIndex: Int, columnspan: Int, rowspan: Int, halignment: HPos, valignment: VPos): Unit

    Sets the grid position, spans, and alignment for the child when contained in a gridpane.

  33. def setConstraints(child: Node, columnIndex: Int, rowIndex: Int, columnspan: Int, rowspan: Int): Unit

    Sets the column, row, column-span, and row-span value for the child when contained in a gridpane.

  34. def setConstraints(child: Node, columnIndex: Int, rowIndex: Int): Unit

    Sets the column,row indices for the child when contained in a gridpane.

  35. def setHalignment(node: Node, hp: HPos): Unit

    Sets the horizontal alignment for the child when contained by a GridPane.

  36. def setHgrow(child: Node, value: javafx.scene.layout.Priority): Unit

    Sets the value of the property hgap.

  37. def setMargin(child: Node, value: Insets): Unit

    Sets the margin for the child when contained by a gridpane.

  38. def setRowIndex(child: Node, value: Int): Unit

    Sets the row index for the child when contained by a gridpane so that it will be positioned starting in that row of the gridpane.

  39. def setRowSpan(child: Node, value: Int): Unit

    Sets the row span for the child when contained by a gridpane so that it will span that number of rows vertically.

  40. def setValignment(node: Node, vp: VPos): Unit

    Sets the vertical alignment for the child when contained by a gridpane.

  41. def setVgrow(child: Node, value: Priority): Unit

    Sets the vertical grow priority for the child when contained by a gridpane.

  42. implicit def sfxGridPane2jfx(v: GridPane): javafx.scene.layout.GridPane

  43. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  44. def toString(): String

    Definition Classes
    AnyRef → Any
  45. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  46. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  47. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

  1. val REMAINING: Int

    Annotations
    @deprecated
    Deprecated

    (Since version 8.0.60-R10) Use Remaining; REMAINING will be removed in a future release

Inherited from AnyRef

Inherited from Any

Ungrouped