Uses of Class
net.sf.paperclips.GridColumn
-
Packages that use GridColumn Package Description net.sf.paperclips Core classes for creating printable documents. -
-
Uses of GridColumn in net.sf.paperclips
Methods in net.sf.paperclips that return GridColumn Modifier and Type Method Description GridColumn[]
GridPrint. getColumns()
Returns an array ofGridColumn
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.Methods in net.sf.paperclips with parameters of type GridColumn 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.Constructors in net.sf.paperclips with parameters of type GridColumn 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.
-