Guest User

Untitled

a guest
Dec 11th, 2017
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. Composite comp = new Composite(shell, SWT.NONE);
  2. comp.setLayout(new GridLayout(4, false));
  3. Label hidenLabel = new Label (comp, SWT.NONE);
  4. GridData gridData = new GridData(SWT.FILL, SWT.FILL, true, true);
  5. hidenLabel.setGridData(gridData );
  6. //hide the button
  7. gridData .exclude = true;
  8. comp.pack();
Add Comment
Please, Sign In to add comment