Background

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

Value members

Constructors

def this(fills: Array[BackgroundFill])

Create a new Background by supplying an array of BackgroundFills.

Create a new Background by supplying an array of BackgroundFills.

def this(fills: Array[BackgroundFill], images: Array[BackgroundImage])

Create a new Background by supplying two arrays, one for background fills, and one for background images.

Create a new Background by supplying two arrays, one for background fills, and one for background images.

def this(images: Array[BackgroundImage])

Create a new Background by supplying an array of BackgroundImages.

Create a new Background by supplying an array of BackgroundImages.

def this(fills: Seq[BackgroundFill], images: Seq[BackgroundImage])

Create a new Background supply two Lists, one for background fills and one for background images.

Create a new Background supply two Lists, one for background fills and one for background images.

Concrete methods

def fills: Seq[BackgroundFill]
  • The list of BackgroundFills which together define the filled portion of this Background.
def images: Seq[BackgroundImage]

The list of BackgroundImages which together define the image portion of this Background.

The list of BackgroundImages which together define the image portion of this Background.

The outsets of this Background.

The outsets of this Background.

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: Background