0
如何在draw2d TextFlow
圖中添加強制換行符。如何在draw2d中添加強制換行符TextFlow
我通過添加幾個不同的對象來構建IFigure
。除了其他的東西,我添加一個FlowPage
包含TextFlow
。但我找不到在特定位置強制換行的選項。
Figure fig = new Figure();
fig.setLayoutManager(new FreeformLayout());
FlowPage flow = new FlowPage();
flow.setSize(100,100);
TextFlow text = new textFlow("A rather long text without any line-breaks. Lorem Ipsum dolor sit amet.");
flow.add(text);
fig.add(flow);
fig.setSite(100,100);