ColumnConstraints

class ColumnConstraints(val delegate: ColumnConstraints) extends ConstraintsBase with SFXDelegate[ColumnConstraints]
Companion
object
trait SFXDelegate[ColumnConstraints]
class Object
trait Matchable
class Any

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.

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.

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.

Concrete methods

The horizontal fill policy for the column.

The horizontal fill policy for the column.

def fillWidth_=(v: Boolean): Unit

The horizontal alignment for the column.

The horizontal alignment for the column.

def halignment_=(v: HPos): Unit
def hgrow: ObjectProperty[Priority]

The horizontal grow priority for the column.

The horizontal grow priority for the column.

def hgrow_=(v: Priority): Unit

The maximum width for the column.

The maximum width for the column.

def maxWidth_=(v: Double): Unit

The minimum width for the column.

The minimum width for the column.

def minWidth_=(v: Double): Unit

The width percentage of the column.

The width percentage of the column.

def percentWidth_=(v: Double): Unit

The preferred width for the column.

The preferred width for the column.

def prefWidth_=(v: Double): Unit

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 Params
ref

Object to be compared.

Returns

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

Definition Classes
Inherited from
SFXDelegate
override def hashCode: Int
Returns

The delegate hashcode

Definition Classes
Inherited from
SFXDelegate
override def toString: String
Returns

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

Definition Classes
Inherited from
SFXDelegate

Concrete fields

override val delegate: ColumnConstraints