문제

I using TextFlow object as the graphic node for a CheckBoxTextItem (from controlsFX). If the TextFlow object is longer the width of the tree view, it gets wrapped. How can I stop the wrapping? or set something like an Ellipsis String-- like what you can do with Labels?

The text flow object is made up of Text objects.

도움이 되었습니까?

해결책

From the TextFlow documentation:

The wrapping width of the layout is determined by the region's current width. It can be specified by the application by setting the textflow's preferred width. If no wrapping is desired, the application can either set the preferred with to Double.MAX_VALUE or Region.USE_COMPUTED_SIZE.

So, to stop a TextFlow from wrapping:

textFlow.setPrefWidth(Region.USE_COMPUTED_SIZE);

다른 팁

You can wrap a textflow in a scrollpane because scrollpane layout is calculated by its child nodes .

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top