...
| Code Block | ||
|---|---|---|
| ||
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 | ||
|---|---|---|
| ||
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.
...