Uses of Class
jdbreport.model.GridRect

Packages that use GridRect
jdbreport.design.model   
jdbreport.grid   
jdbreport.grid.undo   
jdbreport.model   
jdbreport.model.clipboard   
 

Uses of GridRect in jdbreport.design.model
 

Methods in jdbreport.design.model with parameters of type GridRect
 void TemplateModel.setFunctionName(GridRect selectionRect, String functionName)
          Sets the function's name for the selected cells
 

Uses of GridRect in jdbreport.grid
 

Methods in jdbreport.grid that return GridRect
 GridRect JReportGrid.getSelectionRect()
           
 

Methods in jdbreport.grid with parameters of type GridRect
 String JReportGrid.copy(GridRect selectionRect)
           
 Image JReportGrid.copyImage(GridRect selectionRect)
           
 String JReportGrid.copyText(GridRect selectionRect)
           
 void CellPropertiesDlg.setCell(GridRect grid)
           
 void JReportGrid.setSelectedRect(GridRect rect)
          Selects cells by rect
 

Uses of GridRect in jdbreport.grid.undo
 

Fields in jdbreport.grid.undo declared as GridRect
protected  GridRect AbstractGridUndo.selectedRect
           
 

Uses of GridRect in jdbreport.model
 

Methods in jdbreport.model with parameters of type GridRect
 void ReportModel.delete(GridRect selectionRect)
          Removes the selected cells
 void JReportModel.delete(GridRect selectionRect)
           
 Iterator<Cell> ReportModel.getSelectedCells(GridRect rect)
          Returns cells that do not have owner
 Iterator<Cell> JReportModel.getSelectedCells(GridRect rect)
           
 void ReportModel.setBackground(GridRect selectionRect, Color color)
          Sets background color for the selected cells
 void JReportModel.setBackground(GridRect selectionRect, Color color)
           
 void ReportModel.setDecimals(GridRect selectionRect, int d)
          Sets new decimal position of the numeric value for selected cells.
 void JReportModel.setDecimals(GridRect selectionRect, int d)
           
 void ReportModel.setFontName(GridRect selRect, String fontName)
          Sets the font's name for the cells by the selRect.
 void JReportModel.setFontName(GridRect selRect, String fontName)
           
 void ReportModel.setFontSize(GridRect selRect, int fontSize)
          Sets the font's size for the cells by the selRect
 void JReportModel.setFontSize(GridRect selRect, int fontSize)
           
 void ReportModel.setFontStyle(GridRect selRect, int fontStyle, boolean enable)
          Sets the font's style for the cells by coordinates selRect
 void JReportModel.setFontStyle(GridRect selRect, int fontStyle, boolean enable)
           
 void ReportModel.setForeground(GridRect selectionRect, Color color)
          Sets foreground color for the selected cells
 void JReportModel.setForeground(GridRect selectionRect, Color color)
           
 void ReportModel.setHorizontalAlignment(GridRect selectionRect, int align)
          Sets the horizontal alignment for the selected cells The horizontal alignment is a constant that may be LEFT, RIGHT, CENTER or JUSTIFY
 void JReportModel.setHorizontalAlignment(GridRect selRect, int align)
           
 void ReportModel.setVerticalAlignment(GridRect selectionRect, int align)
          Sets the vertical alignment for the selected cells The vertical alignment is a constant that may be TOP, BOTTOM or CENTER
 void JReportModel.setVerticalAlignment(GridRect selRect, int align)
           
 

Uses of GridRect in jdbreport.model.clipboard
 

Methods in jdbreport.model.clipboard with parameters of type GridRect
 void ClipboardParser.save(Writer writer, ReportModel model, GridRect selectionRect)