[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Newsgroup Home]
|
[news.eclipse.tools.ve] Page length
|
Hi,
I am creating an application. and I need to create fairly large SWT pages with the help of Visual Editor. So I just created Visual class using Composite. But on the design view when I resized this to length more than 3000 I got an error information that "Control is too large for picture. The picture has been clipped ".
Here's how code looks when I resized on design view.
private void initialize() {
setSize(new Point(474, 3041));
setLayout(new GridLayout());
}
Looks like VE have a restriction on the Figure's length on the Design view.
I have attached screenshot for reference.
Is there any way to increase the size by VE extension mechanism?
Thanks in advance!