The following API helps you write fUML runtime values to an Excel file
 

public void writeObjectsToSpreadSheet(Object object, String fileName, String sheetName, Number atRow, boolean isReplace, Object mappingClass) {
...
} 


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

public void writeObjectsToSpreadSheet(Object object, String fileName, Number atRow, boolean isReplace, Object mappingClass) {
...
} 


The mappingClass 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.
 

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