com.acesoft.aceoffix
Class ExcelResponse

java.lang.Object
  extended by com.acesoft.aceoffix.ExcelResponse

public class ExcelResponse
extends java.lang.Object

Fills data into Excel spreadsheet and controls behavior of Excel application. ExcelResponse is a important class. ExcelResponse object is the data source of AceoffixCtrl and the parameter of the AceoffixCtrl.bind method. If you need to fill data into Excel spreadsheet you have to create ExcelResponse object.

Version:
3.0
Author:
Acesoft Corporation

Constructor Summary
ExcelResponse()
          Initializes a new instance of the ExcelResponse class.
 
Method Summary
 ExcelResSheet openSheet(java.lang.String sheetName)
          Opens the specified worksheet and returns a ExcelResSheet object.
 void setDisableSheetDoubleClick(boolean disableSheetDoubleClick)
          Sets a value that indicates whether or not double-click is disabled in worksheet.
 void setDisableSheetRightClick(boolean disableSheetRightClick)
          Sets a value that indicates whether or not right-click is disabled in worksheet.
 void setDisableSheetSelection(boolean disableSheetSelection)
          Sets a value that indicates whether or not selection is disabled in worksheet.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ExcelResponse

public ExcelResponse()
              throws java.lang.Exception,
                     java.io.IOException
Initializes a new instance of the ExcelResponse class.

Throws:
java.lang.Exception
java.io.IOException
Method Detail

setDisableSheetDoubleClick

public void setDisableSheetDoubleClick(boolean disableSheetDoubleClick)
Sets a value that indicates whether or not double-click is disabled in worksheet.

Parameters:
disableSheetDoubleClick - The default value is false.

setDisableSheetRightClick

public void setDisableSheetRightClick(boolean disableSheetRightClick)
Sets a value that indicates whether or not right-click is disabled in worksheet.

Parameters:
disableSheetRightClick - The default value is false.

setDisableSheetSelection

public void setDisableSheetSelection(boolean disableSheetSelection)
Sets a value that indicates whether or not selection is disabled in worksheet.

Parameters:
disableSheetSelection - The default value is false.

openSheet

public ExcelResSheet openSheet(java.lang.String sheetName)
                        throws java.io.IOException
Opens the specified worksheet and returns a ExcelResSheet object. If the specified worksheet exists, this method will return a ExcelResSheet object.

Parameters:
sheetName - The name of worksheet. The worksheet name is shown on the tab for the worksheet.
Throws:
java.io.IOException