DervaFX Wiki
DervaElement<T>
Base Type
DervaElement<T> is the shared base wrapper used by most of the public surface. It exposes common layout, sizing, visibility, and styling helpers.
Current Methods
getNode() : Nodeposition(double x, double y) : TsetPos(double x, double y) : Tsize(double width, double height) : TsetSize(double width, double height) : TminSize(double width, double height) : TmaxSize(double width, double height) : Tpadding(Insets insets) : Tpadding(double value) : Tspacing(double value) : Talign(Pos pos) : TfillWidth() : TfillHeight() : Ttext(String value) : Tvisible(boolean value) : TsetVisible(boolean value) : Tenabled(boolean value) : TsetEnabled(boolean value) : Tdock(DervaDockMode mode) : TdockNone() : TdockTop() : TdockBottom() : TdockLeft() : TdockRight() : TdockFill() : TdockMargin(double left, double top, double right, double bottom) : TcssClass(String className) : Tstyle(String inlineStyle) : TanchorFill() : T
Notes
- Each element wraps a normal JavaFX node rather than replacing JavaFX with a custom rendering engine.
- getNode() returns the wrapper/root node used for layout and attachment.