ColumnConstraints

scalafx.scene.layout.ColumnConstraints
See theColumnConstraints companion object
class ColumnConstraints(val delegate: ColumnConstraints) extends ConstraintsBase, SFXDelegate[ColumnConstraints]

Attributes

Companion
object
Graph
Supertypes
trait SFXDelegate[ColumnConstraints]
class Object
trait Matchable
class Any

Members list

Value members

Constructors

def this(width: Double)

Creates a column constraint object with a fixed width.

Creates a column constraint object with a fixed width.

Attributes

def this(minWidth: Double, prefWidth: Double, maxWidth: Double)

Creates a column constraint object with a fixed size range.

Creates a column constraint object with a fixed size range.

Attributes

def this(minWidth: Double, prefWidth: Double, maxWidth: Double, hgrow: Priority, halignment: HPos, fillWidth: Boolean)

Creates a column constraint object with a fixed size range, horizontal grow priority, horizontal alignment, and horizontal fill behavior.

Creates a column constraint object with a fixed size range, horizontal grow priority, horizontal alignment, and horizontal fill behavior.

Attributes

Concrete methods

The horizontal fill policy for the column.

The horizontal fill policy for the column.

Attributes

The horizontal alignment for the column.

The horizontal alignment for the column.

Attributes

def hgrow: ObjectProperty[Priority]

The horizontal grow priority for the column.

The horizontal grow priority for the column.

Attributes

def hgrow_=(v: Priority): Unit

The maximum width for the column.

The maximum width for the column.

Attributes

The minimum width for the column.

The minimum width for the column.

Attributes

The width percentage of the column.

The width percentage of the column.

Attributes

The preferred width for the column.

The preferred width for the column.

Attributes

Inherited methods

override def equals(ref: Any): Boolean

Verifies if a object is equals to this delegate.

Verifies if a object is equals to this delegate.

Value parameters

ref

Object to be compared.

Attributes

Returns

if the other object is equals to this delegate or not.

Definition Classes
SFXDelegate -> Any
Inherited from:
SFXDelegate
override def hashCode: Int

Attributes

Returns

The delegate hashcode

Definition Classes
SFXDelegate -> Any
Inherited from:
SFXDelegate
override def toString: String

Attributes

Returns

Returns the original delegate's toString() adding a [SFX] prefix.

Definition Classes
SFXDelegate -> Any
Inherited from:
SFXDelegate

Concrete fields

override val delegate: ColumnConstraints

JavaFX object to be wrapped.

JavaFX object to be wrapped.

Attributes