TablePosition

scalafx.scene.control.TablePosition
See theTablePosition companion object
class TablePosition[S, T](val delegate: TablePosition[S, T]) extends TablePositionBase[TableColumn[S, T]], SFXDelegate[TablePosition[S, T]]

Type parameters

S

The type of the items contained within the TableView (i.e. the same generic type as the S in TableView).

T

The type of the items contained within the TableColumn.

Value parameters

JavaFX

TablePositionBase to be wrapped

Attributes

Constructor

creates a new ScalaFX TablePosition from a JavaFX one.

Companion
object
Graph
Supertypes
class TablePositionBase[TableColumn[S, T]]
trait SFXDelegate[TablePosition[S, T]]
class Object
trait Matchable
class Any

Members list

Value members

Constructors

def this(tableView: TableView[S], row: Int, tableColumn: TableColumn[S, T])

Constructs a TablePosition instance to represent the given row/column position in the given TableView instance.

Constructs a TablePosition instance to represent the given row/column position in the given TableView instance.

Attributes

Concrete methods

The TableView that this TablePosition is related to.

The TableView that this TablePosition is related to.

Attributes

Inherited methods

def column: Int

The column index that this TablePosition represents in the TableView.

The column index that this TablePosition represents in the TableView.

Attributes

Inherited from:
TablePositionBase
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
def row: Int

The row that this TablePosition represents in the TableView.

The row that this TablePosition represents in the TableView.

Attributes

Inherited from:
TablePositionBase
def tableColumn: TC

The TableColumn that this TablePosition represents in the TableView.

The TableColumn that this TablePosition represents in the TableView.

Attributes

Inherited from:
TablePositionBase
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: TablePosition[S, T]

JavaFX object to be wrapped.

JavaFX object to be wrapped.

Attributes