Package org.eclipse.swt.layout
Class BorderData
java.lang.Object
org.eclipse.swt.layout.BorderData
Controls the several aspects of a 
BorderLayout.- Since:
- 3.119
- 
Field SummaryFields
- 
Constructor SummaryConstructorsConstructorDescriptioncreates 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
- 
Method Summary
- 
Field Details- 
hHintpublic int hHint
- 
wHintpublic int wHint
- 
regionpublic int region
 
- 
- 
Constructor Details- 
BorderDatapublic BorderData()creates aBorderDatawith default options
- 
BorderDatapublic 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 are- SWT.TOP,- SWT.CENTER,- SWT.LEFT,- SWT.RIGHT,- SWT.BOTTOM
 
- 
BorderDatapublic BorderData(int region, int widthHint, int heightHint) creates aBorderDatainitialized with the given region and width and height hints- Parameters:
- region- the region valid values are- SWT.TOP,- SWT.CENTER,- SWT.LEFT,- SWT.RIGHT,- SWT.BOTTOM
- widthHint- the default hint for the width
- heightHint- he default hint for the height
 
 
- 
- 
Method Details