Spec-Zone .ru
спецификации, руководства, описания, API

JavaFX: Bringing Rich Experiences To All the Screens Of Your Life

Profile: desktop, common

Overview

Encapsulates the state required to layout a node which is resizable by its parent container. Layout containers will use this information to layout child nodes, however a node need not be resizable to be laid out.

Profile: common

Variable Summary

accessnametypeCan ReadCan InitCan WriteDefault Valuedescription
publicheightNumber

Defines the height of the Node.

public-read protectedmaximumHeightNumbersubclasssubclass

Defines the maximum height of the Node.

Defines the maximum height of the Node. Layout containers should strive not set the Node's height larger than this value. This value is calculated by the node subclass using applicable state and variable settings and is not directly settable by applications.

Profile: common

 
public-read protectedmaximumWidthNumbersubclasssubclass

Defines the maximum width of the Node.

Defines the maximum width of the Node. Layout containers should strive not set the Node's width larger than this value. This value is calculated by the node subclass using applicable state and variable settings and is not directly settable by applications.

Profile: common

 
public-read protectedminimumHeightNumbersubclasssubclass

Defines the minimum height of the Node.

Defines the minimum height of the Node. Layout containers should strive not set the Node's height smaller than this value. This value is calculated by the node subclass using applicable state and variable settings and is not directly settable by applications.

Profile: common

 
public-read protectedminimumWidthNumbersubclasssubclass

Defines the minimum width of the Node.

Defines the minimum width of the Node. Layout containers should strive not set the Node's width smaller than this value. This value is calculated by the node subclass using applicable state and variable settings and is not directly settable by applications.

Profile: common

 
public-read protectedpreferredHeightNumbersubclasssubclass

Defines the preferred height of the Node.

Defines the preferred height of the Node. Layout containers should set the Node's height to this value whenever possible. This value is calculated by the node subclass using applicable state and variable settings and is not directly settable by applications.

Profile: common

 
public-read protectedpreferredWidthNumbersubclasssubclass

Defines the preferred width of the Node.

Defines the preferred width of the Node. Layout containers should set the Node's width to this value whenever possible. This value is calculated by the node subclass using applicable state and variable settings and is not directly settable by applications.

Profile: common

 
publicwidthNumber

Defines the width of the Node.

Inherited Variables

Inherited Functions