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 ofGridColumns which are the columns in the receiver.static GridColumnGridColumn. 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 voidGridPrint. addColumn(int index, GridColumn column)Inserts the column at the specified position in the grid.voidGridPrint. addColumn(GridColumn column)Adds the column on the right edge of the grid.voidGridPrint. addColumns(int index, GridColumn[] columns)Inserts the columns at the specified position in the grid.voidGridPrint. 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.
-