excelRemoveRow
Description
Removes a row in the opened workbook.
Parameters
Return Type
Boolean
Returns true if the operation was successful, false otherwise.
Example
Opens a workbook, deletes a row and then saves and closes the workbook.
use "excel";
int fid = openWorkbook("snakes.xlsx");
removeRow(fid, "Venemous Snakes", 4);
closeWorkbook(fid);
Result: The row containg the Blue Krait snake (row 5) will be deleted.
Click here to download the workbook used in this example.