Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagetext
public void writeObjectsToSpreadSheet(Object object, String fileName, String sheetName, Number atRow, boolean isReplace, Object mappingClassmappingElement) {
...
} 


The APIs can ignore the sheetName and use the first sheet of the selected spreadsheet instead.
 

Code Block
languagetext
public void writeObjectsToSpreadSheet(Object object, String fileName, Number atRow, boolean isReplace, Object mappingClassmappingElement) {
...
} 


The mappingClass mappingElement parameter can be String or Element for represent the mapping Class name or mapping Class Element. The APIs can write the runtime objects of the file schema element to spreadsheet that is matched the file name by ignore the mapping class.
 

...