|
|
||||
| Package com.dassault_systemes.catjdialog |
Class GC
|
| Class Hierarchy |
java.lang.Object | +-com.dassault_systemes.catjdialog.GC
| Class Location |
| Class Description |
public class GC
A grid layout constraints data structure.
This data structure holds all required information defining a component
layout within a grid layout implementation (see CATFrame).
See the CAA Use Case "Creating a Command" for a simple Grid Layout sample.
See the CAA Use Case "Grid Constraint Layout" for a complex Grid Layout sample.
| Field Summary |
| int | _x |
| int | _y |
| int | _w |
| int | _h |
| int | _align |
| int | _justify |
| int | BOTTOM |
| int | CENTER |
| int | LEFT |
| int | RIGHT |
| int | TOP |
| int | FILL |
| int | FILLH |
| int | FILLV |
| int | NOFILL |
| Constructor Summary |
| GC(int iX, int iY, int iW, int iH, int iAlign, int iJustify) |
| Method Summary |
| String | toString() |
| Field Detail |
int _x
Position X
int _y
Position Y
int _w
Width
int _h
Height
int _align
Alignement
int _justify
Justification
int BOTTOM
Alignment: bottom
int CENTER
Alignment: center
int LEFT
Alignment: left
int RIGHT
Alignment: right
int TOP
Alignment: top
int FILL
Justify: horizontaly and verticaly
int FILLH
Justify: horizontaly
int FILLV
Justify: verticaly
int NOFILL
Justify: none
| Constructor Detail |
GC(int iX, int iY, int iW, int iH, int iAlign, int iJustify)
Create a grid layout constraint set with specified values.
| Method Detail |
String toString()
Returns a string representation of this grid layout constraints object.