Packages

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
Visibility
  1. Public
  2. Protected

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. 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.

  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def clearConstraints(child: javafx.scene.Node): Unit

    Removes all gridpane constraints from the child node.

  7. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  8. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  10. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  11. def getColumnIndex(child: Node): Integer

    Returns the child's column index constraint if set.

  12. def getColumnSpan(child: Node): Integer

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

  13. def getHalignment(child: Node): HPos

    Returns the child's halignment constraint if set.

  14. def getHgrow(child: Node): Priority

    Returns the child's hgrow constraint if set.

  15. def getMargin(child: Node): Insets

    Returns the child's margin constraint if set.

  16. def getRowIndex(child: Node): Integer

    Returns the child's row index constraint if set.

  17. def getRowSpan(child: Node): Integer

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

  18. def getValignment(child: Node): VPos

    Returns the child's valignment constraint if set.

  19. def getVgrow(child: Node): Priority

    Returns the child's vgrow constraint if set.

  20. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  21. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  22. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  23. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  24. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  25. 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.

  26. 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.

  27. 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.

  28. 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.

  29. 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.

  30. 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.

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

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

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

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

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

    Sets the value of the property hgap.

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

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

  35. 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.

  36. 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.

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

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

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

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

  39. implicit def sfxGridPane2jfx(v: GridPane): javafx.scene.layout.GridPane
  40. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  41. def toString(): String
    Definition Classes
    AnyRef → Any
  42. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  43. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  44. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

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

  2. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

Inherited from AnyRef

Inherited from Any

Ungrouped