Klasse VBoxGraphics<R extends Row<?,?,?>>

Typparameter:
R - the type of the rows displayed by this view
Alle implementierten Schnittstellen:
Styleable, EventTarget, Skinnable

public class VBoxGraphics<R extends Row<?,?,?>> extends GraphicsBase<R>
A specialization of GraphicsBase that displays several rows inside a VBox. Rows will be laid out based on their VBox constraints (see for example VBox.setVgrow(javafx.scene.Node, Priority)).
Seit:
1.0
  • Eigenschaftsdetails

  • Konstruktordetails

    • VBoxGraphics

      public VBoxGraphics()
      Creates a new VBox graphics view and configures its default layout behavior.
  • Methodendetails

    • createDefaultSkin

      protected Skin<?> createDefaultSkin()
      Creates the default skin used by this graphics view.
      Setzt außer Kraft:
      createDefaultSkin in Klasse Control
      Gibt zurück:
      the default skin
    • getRowPanes

      public List<RowPane<R>> getRowPanes()
      Returns the row panes currently managed by this graphics view.
      Angegeben von:
      getRowPanes in Klasse GraphicsBase<R extends Row<?,?,?>>
      Gibt zurück:
      the row panes
    • getVBox

      public final VBox getVBox()
      Returns the VBox instance that is being used by this view.
      Gibt zurück:
      the VBox
      Seit:
      1.0
    • createVBox

      protected VBox createVBox()
      Creates the VBox used by this view. This method can be overriden to plug in an application-specific specialization of VBox.
      Gibt zurück:
      the VBox instance that will be used by this graphics view
      Seit:
      1.0
    • priorityCallbackProperty

      public final ObjectProperty<Callback<R,Priority>> priorityCallbackProperty()
      Returns the property used to store a callback for looking up a resize Priority for each row inside the VBox.
      Gibt zurück:
      a callback for looking up resize Priority values for each row
      Seit:
      1.0
      Siehe auch:
    • setPriorityCallback

      public final void setPriorityCallback(Callback<R,Priority> callback)
      Sets the value of priorityCallbackProperty().
      Parameter:
      callback - the callback used for looking up resize Priority values
      Seit:
      1.0
    • getPriorityCallback

      public final Callback<R,Priority> getPriorityCallback()
      Returns the value of priorityCallbackProperty().
      Gibt zurück:
      the callback used for looking up resize Priority values
      Seit:
      1.0