Uses of Package
com.extentech.ExtenXLS

Packages that use com.extentech.ExtenXLS
com.extentech.ExtenBean.swing The ExtenBean swing package contains user interface components for the ExtenBean DataObjects. 
com.extentech.ExtenDOC   
com.extentech.ExtenXLS The ExtenXLS package contains the primary classes for working with spreadsheets. 
com.extentech.ExtenXLS.binder The ExtenXLS binder package contains the CellBinder API which automates mapping of data to spreadsheets. 
com.extentech.ExtenXLS.ui The ExtenXLS UI package contains swing UI spreadsheet components. 
com.extentech.ExtenXLS.ui.jchart The ExtenXLS UI.jchart package contains swing UI charting package for spreadsheet components. 
com.extentech.ExtenXLS.ui.swing The ExtenXLS UI package contains swing UI spreadsheet components. 
com.extentech.ExtenXLS.web The ExtenXLS.web package contains ExtenXLS Spreadsheet classes enhanced with web and database persistence capabilities. 
 

Classes in com.extentech.ExtenXLS used by com.extentech.ExtenBean.swing
DocumentHandle
          This is the Abstract document class which represents an atomic Document file or object.
 

Classes in com.extentech.ExtenXLS used by com.extentech.ExtenDOC
Document
          An interface representing an ExtenXLS WorkBook.
DocumentHandle
          This is the Abstract document class which represents an atomic Document file or object.
Handle
          A generic handle interface to various XLS components Currently this interface is just a flag, similar to Synchronizable
 

Classes in com.extentech.ExtenXLS used by com.extentech.ExtenXLS
AutoFilterHandle
           AutoFilterHandle allows for manipulation of the AutoFilter feature of Excel
CellHandle
          The CellHandle provides a handle to an XLS Cell and its values.
CellRange
          Cell Range is a handle to a range of Workbook Cells
Contains useful methods for working with Collections of Cells.
CellRangeRef
          Represents a reference to a 3D range of cells.
ChartHandle
          Chart Handle allows for manipulation of Charts within a WorkBook.
ChartSeriesHandle
          Chart Series Handle allows for manipulation of Chart Series within a Chart Handle.
ColHandle
          The ColHandle provides access to an Worksheet Column and its Cells.
CommentHandle
           CommentHandle allows for manipulation of the Note or Comment feature of Excel In order to create CommentHandles programatically use the methods in WorkSheetHandle or CellHandle
ConditionalFormatHandle
           ConditionalFormatHandle allows for manipulation of the ConditionalFormat cells in Excel Using the ConditionalFormatHandle, the affected range of ConditionalFormats can be modified, along with the formatting applied to the cells when the condition is true.
ConditionalFormatRule
           
Document
          An interface representing an ExtenXLS WorkBook.
DocumentHandle
          This is the Abstract document class which represents an atomic Document file or object.
DocumentObjectNotFoundException
           
ExtenXLS
          Useful Entry-Point for ExtenXLS functionality.
FormatHandle
          Provides methods for querying and changing cell formatting information.
FormulaHandle
          Formula Handle allows for manipulation of Formulas within a WorkBook.
Handle
          A generic handle interface to various XLS components Currently this interface is just a flag, similar to Synchronizable
ImageHandle
          The ImageHandle provides access to an Image embedded in a spreadsheet.

Use the ImageHandle to work with images in spreadsheet.


With an ImageHandle you can:

insert images into your spreadsheet set the position of the image set the width and height of the image write spreadsheet image files to any outputstream

NameHandle
          The NameHandle provides access to a Named Range and its Cells.

Use the NameHandle to work with individual Named Ranges in an XLS file.


With a NameHandle you can:

get a handle to the Cells in a Name
set the default formatting for a Name

PivotTableHandle
          PivotTable Handle allows for manipulation of PivotTables within a WorkBook.
PrinterSettingsHandle
          The PrinterSettingsHandle gives you control over the printer settings for a Sheet.
RowHandle
          The RowHandle provides access to a Worksheet Row and its Cells.
ValidationHandle
          ValidationHandle allows for manipulation of the validation cells in Excel Using the ValidationHandle, the affected range of validations can be modified, along with many of the error messages and actual validation upon the cells.
WorkBook
          An interface representing an ExtenXLS WorkBook.
WorkBookHandle
          The WorkBookHandle provides a handle to the XLS file and includes convenience methods for working with the WorkSheets and Cell values within the XLS file.
WorkSheetHandle
          The WorkSheetHandle provides a handle to a Worksheet within an XLS file
and includes convenience methods for working with the Cell values within the sheet.

for example:

WorkBookHandle book = new WorkBookHandle("testxls.xls");
WorkSheetHandle sheet1 = book.getWorkSheet("Sheet1");
CellHandle cell = sheet1.getCell("B22");

to add a cell:

CellHandle cell = sheet1.add("Hello World","C22");

to add a numeric cell:

CellHandle cell = sheet1.add(new Integer(120),"C23");

to add a formula cell:

CellHandle cell = sheet1.add("=PI()","C24");

to write out the workbook to a file:



 

Classes in com.extentech.ExtenXLS used by com.extentech.ExtenXLS.binder
CellHandle
          The CellHandle provides a handle to an XLS Cell and its values.
CellRange
          Cell Range is a handle to a range of Workbook Cells
Contains useful methods for working with Collections of Cells.
DocumentHandle
          This is the Abstract document class which represents an atomic Document file or object.
NameHandle
          The NameHandle provides access to a Named Range and its Cells.

Use the NameHandle to work with individual Named Ranges in an XLS file.


With a NameHandle you can:

get a handle to the Cells in a Name
set the default formatting for a Name

WorkBook
          An interface representing an ExtenXLS WorkBook.
WorkBookHandle
          The WorkBookHandle provides a handle to the XLS file and includes convenience methods for working with the WorkSheets and Cell values within the XLS file.
 

Classes in com.extentech.ExtenXLS used by com.extentech.ExtenXLS.ui
CellHandle
          The CellHandle provides a handle to an XLS Cell and its values.
CellRange
          Cell Range is a handle to a range of Workbook Cells
Contains useful methods for working with Collections of Cells.
NameHandle
          The NameHandle provides access to a Named Range and its Cells.

Use the NameHandle to work with individual Named Ranges in an XLS file.


With a NameHandle you can:

get a handle to the Cells in a Name
set the default formatting for a Name

WorkSheetHandle
          The WorkSheetHandle provides a handle to a Worksheet within an XLS file
and includes convenience methods for working with the Cell values within the sheet.

for example:

WorkBookHandle book = new WorkBookHandle("testxls.xls");
WorkSheetHandle sheet1 = book.getWorkSheet("Sheet1");
CellHandle cell = sheet1.getCell("B22");

to add a cell:

CellHandle cell = sheet1.add("Hello World","C22");

to add a numeric cell:

CellHandle cell = sheet1.add(new Integer(120),"C23");

to add a formula cell:

CellHandle cell = sheet1.add("=PI()","C24");

to write out the workbook to a file:



 

Classes in com.extentech.ExtenXLS used by com.extentech.ExtenXLS.ui.jchart
ChartHandle
          Chart Handle allows for manipulation of Charts within a WorkBook.
 

Classes in com.extentech.ExtenXLS used by com.extentech.ExtenXLS.ui.swing
CellRange
          Cell Range is a handle to a range of Workbook Cells
Contains useful methods for working with Collections of Cells.
 

Classes in com.extentech.ExtenXLS used by com.extentech.ExtenXLS.web
CellHandle
          The CellHandle provides a handle to an XLS Cell and its values.
CellRange
          Cell Range is a handle to a range of Workbook Cells
Contains useful methods for working with Collections of Cells.
ChartHandle
          Chart Handle allows for manipulation of Charts within a WorkBook.
Document
          An interface representing an ExtenXLS WorkBook.
DocumentHandle
          This is the Abstract document class which represents an atomic Document file or object.
FormatHandle
          Provides methods for querying and changing cell formatting information.
FormulaHandle
          Formula Handle allows for manipulation of Formulas within a WorkBook.
Handle
          A generic handle interface to various XLS components Currently this interface is just a flag, similar to Synchronizable
ImageHandle
          The ImageHandle provides access to an Image embedded in a spreadsheet.

Use the ImageHandle to work with images in spreadsheet.


With an ImageHandle you can:

insert images into your spreadsheet set the position of the image set the width and height of the image write spreadsheet image files to any outputstream

NameHandle
          The NameHandle provides access to a Named Range and its Cells.

Use the NameHandle to work with individual Named Ranges in an XLS file.


With a NameHandle you can:

get a handle to the Cells in a Name
set the default formatting for a Name

PivotTableHandle
          PivotTable Handle allows for manipulation of PivotTables within a WorkBook.
WorkBook
          An interface representing an ExtenXLS WorkBook.
WorkBookHandle
          The WorkBookHandle provides a handle to the XLS file and includes convenience methods for working with the WorkSheets and Cell values within the XLS file.
WorkSheetHandle
          The WorkSheetHandle provides a handle to a Worksheet within an XLS file
and includes convenience methods for working with the Cell values within the sheet.

for example:

WorkBookHandle book = new WorkBookHandle("testxls.xls");
WorkSheetHandle sheet1 = book.getWorkSheet("Sheet1");
CellHandle cell = sheet1.getCell("B22");

to add a cell:

CellHandle cell = sheet1.add("Hello World","C22");

to add a numeric cell:

CellHandle cell = sheet1.add(new Integer(120),"C23");

to add a formula cell:

CellHandle cell = sheet1.add("=PI()","C24");

to write out the workbook to a file:



 



Copyright © 2010 Extentech Inc. All Rights Reserved.