Uses of Class
com.jxcell.View

Packages that use View
com.jxcell   
com.jxcell.designer   
 

Uses of View in com.jxcell
 

Methods in com.jxcell that return View
 View View.getFirstView()
          Returns the first view of the workbook attached to this view.
 View View.getNextView()
          Returns the next view of a workbook.
 

Methods in com.jxcell with parameters of type View
 void View.attach(View view)
          Attaches the current view to the specified view's workbook, using the display properties of the specified view's workbook.
 void View.copyAll(View view)
          Copies the contents of one workbook to another workbook Rows are indexed from top to bottom beginning with 0; sheets and columns are indexed from left to right beginning with 0.
 void View.copyRange(int dstRow1, int dstCol1, int dstRow2, int dstCol2, View srcView, int srcRow1, int srcCol1, int srcRow2, int srcCol2)
          Copies a range of cells to a new location in the current workbook The source range can be in a different workbook.
 void View.copyRange(int dstRow1, int dstCol1, int dstRow2, int dstCol2, View srcView, int srcRow1, int srcCol1, int srcRow2, int srcCol2, short what)
          Copies a range of cells to a new location in the current workbook The source range can be in a different workbook.
 void View.copyRange(int dstSheet, int dstRow1, int dstCol1, int dstRow2, int dstCol2, View srcView, int srcSheet, int srcRow1, int srcCol1, int srcRow2, int srcCol2)
          Copies a range of cells to a new location in the current workbook Rows are indexed from top to bottom beginning with 0; sheets and columns are indexed from left to right beginning with 0.
 void View.copyRange(int dstSheet, int dstRow1, int dstCol1, int dstRow2, int dstCol2, View srcView, int srcSheet, int srcRow1, int srcCol1, int srcRow2, int srcCol2, short what)
          Copies a range of cells to a new location in the current workbook This method allows you to choose the type of data to copy: formulas only, values only, formats only, any combination of the previous types, or all of the types.
 void View.swapWorkbooks(View f1ToSwapWith)
          Exchanges the workbooks attached to two views.
 void HTMLWriter.write(View view, int sheet1, int row1, int col1, int sheet2, int row2, int col2, java.io.Writer writer)
          Write the specified range to an HTML table
 void CellFormat.setValidationRule(View view1, java.lang.String rule)
          Sets the validation rule expression in U.
 void CellFormat.setValidationRule(View view1, java.lang.String rule, int row, int col)
          Sets the validation rule expression in U.
 

Constructors in com.jxcell with parameters of type View
View(View view)
          If the View argument is null, this constructor creates a new workbook, or if the View argument is not null, this constructor attaches to the specified view's workbook.
 

Uses of View in com.jxcell.designer
 

Methods in com.jxcell.designer that return View
 View Designer.getView()
           
 

Methods in com.jxcell.designer with parameters of type View
static Designer Designer.newDesigner(View view)
          Create a new instance of com.jxcell.designer.Designer using the current ClassFactory.
 

Constructors in com.jxcell.designer with parameters of type View
Designer(View view)
          Primary constructor for the Designer class.