Uses of Class
net.sf.paperclips.GridColumn
Packages that use GridColumn
-
Uses of GridColumn in net.sf.paperclips
Methods in net.sf.paperclips that return GridColumnModifier and TypeMethodDescriptionGridPrint.getColumns()
Returns an array ofGridColumn
s which are the columns in the receiver.static GridColumn
Parses the given column spec and returns a GridColumn matching that spec.Methods in net.sf.paperclips with parameters of type GridColumnModifier and TypeMethodDescriptionvoid
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 GridColumnModifierConstructorDescriptionGridPrint
(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.