Package | Description |
---|---|
net.sf.paperclips |
Core classes for creating printable documents.
|
Modifier and Type | Method | Description |
---|---|---|
GridColumn[] |
GridPrint.getColumns() |
Returns an array of
GridColumn s which are the columns in the
receiver. |
static GridColumn |
GridColumn.parse(java.lang.String spec) |
Parses the given column spec and returns a GridColumn matching that spec.
|
Modifier and Type | Method | Description |
---|---|---|
void |
GridPrint.addColumn(int index,
GridColumn column) |
Inserts the column at the specified position in the grid.
|
void |
GridPrint.addColumn(GridColumn column) |
Adds the column on the right edge of the grid.
|
void |
GridPrint.addColumns(int index,
GridColumn[] columns) |
Inserts the columns at the specified position in the grid.
|
void |
GridPrint.addColumns(GridColumn[] columns) |
Adds the columns on the right edge of the grid.
|
Constructor | Description |
---|---|
GridPrint(GridColumn[] columns) |
Constructs a GridPrint with the given columns and a default look.
|
GridPrint(GridColumn[] columns,
int spacing) |
Deprecated.
use GridPrint(GridColumn[]) instead, then set a
DefaultGridLook on the grid with the desired cell spacing.
|
GridPrint(GridColumn[] columns,
int horizontalSpacing,
int verticalSpacing) |
Deprecated.
use GridPrint(GridColumn[]) instead, then set a
DefaultGridLook on the grid with the desired cell spacing.
|
GridPrint(GridColumn[] columns,
GridLook look) |
Constructs a GridPrint with the given columns and look.
|