Package org.eclipse.swt.layout
Class BorderData
- java.lang.Object
-
- org.eclipse.swt.layout.BorderData
-
public final class BorderData extends Object
Controls the several aspects of aBorderLayout.- Since:
- 3.119
-
-
Constructor Summary
Constructors Constructor Description BorderData()creates aBorderDatawith default optionsBorderData(int region)creates aBorderDatainitialized with the given region, valid values areSWT.TOP,SWT.CENTER,SWT.LEFT,SWT.RIGHT,SWT.BOTTOMBorderData(int region, int widthHint, int heightHint)creates aBorderDatainitialized with the given region and width and height hints
-
-
-
Constructor Detail
-
BorderData
public BorderData()
creates aBorderDatawith default options
-
BorderData
public BorderData(int region)
creates aBorderDatainitialized with the given region, valid values areSWT.TOP,SWT.CENTER,SWT.LEFT,SWT.RIGHT,SWT.BOTTOM- Parameters:
region- the region valid values areSWT.TOP,SWT.CENTER,SWT.LEFT,SWT.RIGHT,SWT.BOTTOM
-
BorderData
public BorderData(int region, int widthHint, int heightHint)creates aBorderDatainitialized with the given region and width and height hints- Parameters:
region- the region valid values areSWT.TOP,SWT.CENTER,SWT.LEFT,SWT.RIGHT,SWT.BOTTOMwidthHint- the default hint for the widthheightHint- he default hint for the height
-
-